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/>
|
||||
* <pre>
|
||||
* Node node = NodeBuilder.nodeBuilder()
|
||||
* .settings(ImmutableSettings.settingsBuilder().put("node.data", false)
|
||||
* .settings(Settings.settingsBuilder().put("node.data", false)
|
||||
* .node();
|
||||
* </pre>
|
||||
* <p/>
|
||||
|
|
|
@ -36,7 +36,7 @@ import static org.hamcrest.Matchers.*;
|
|||
|
||||
/**
|
||||
*/
|
||||
public class ImmutableSettingsTests extends ElasticsearchTestCase {
|
||||
public class SettingsTests extends ElasticsearchTestCase {
|
||||
|
||||
@Test
|
||||
public void testCamelCaseSupport() {
|
|
@ -19,6 +19,6 @@
|
|||
|
||||
package org.elasticsearch.common.settings.bar;
|
||||
|
||||
//used in ImmutableSettingsTest
|
||||
//used in SettingsTest
|
||||
public class BarTestClass {
|
||||
}
|
||||
|
|
|
@ -19,6 +19,6 @@
|
|||
|
||||
package org.elasticsearch.common.settings.foo;
|
||||
|
||||
// used in ImmutableSettingsTest
|
||||
// used in SettingsTest
|
||||
public class FooTestClass {
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue