mirror of
https://github.com/honeymoose/OpenSearch.git
synced 2025-02-17 02:14:54 +00:00
a few more ImmutableSettings -> Settings
This commit is contained in:
parent
44fe99a3a8
commit
9d1f6f7615
@ -45,7 +45,7 @@ import org.elasticsearch.common.settings.Settings;
|
|||||||
* <p/>
|
* <p/>
|
||||||
* <pre>
|
* <pre>
|
||||||
* Node node = NodeBuilder.nodeBuilder()
|
* Node node = NodeBuilder.nodeBuilder()
|
||||||
* .settings(ImmutableSettings.settingsBuilder().put("node.data", false)
|
* .settings(Settings.settingsBuilder().put("node.data", false)
|
||||||
* .node();
|
* .node();
|
||||||
* </pre>
|
* </pre>
|
||||||
* <p/>
|
* <p/>
|
||||||
|
@ -36,7 +36,7 @@ import static org.hamcrest.Matchers.*;
|
|||||||
|
|
||||||
/**
|
/**
|
||||||
*/
|
*/
|
||||||
public class ImmutableSettingsTests extends ElasticsearchTestCase {
|
public class SettingsTests extends ElasticsearchTestCase {
|
||||||
|
|
||||||
@Test
|
@Test
|
||||||
public void testCamelCaseSupport() {
|
public void testCamelCaseSupport() {
|
@ -19,6 +19,6 @@
|
|||||||
|
|
||||||
package org.elasticsearch.common.settings.bar;
|
package org.elasticsearch.common.settings.bar;
|
||||||
|
|
||||||
//used in ImmutableSettingsTest
|
//used in SettingsTest
|
||||||
public class BarTestClass {
|
public class BarTestClass {
|
||||||
}
|
}
|
||||||
|
@ -19,6 +19,6 @@
|
|||||||
|
|
||||||
package org.elasticsearch.common.settings.foo;
|
package org.elasticsearch.common.settings.foo;
|
||||||
|
|
||||||
// used in ImmutableSettingsTest
|
// used in SettingsTest
|
||||||
public class FooTestClass {
|
public class FooTestClass {
|
||||||
}
|
}
|
||||||
|
Loading…
x
Reference in New Issue
Block a user