a few more ImmutableSettings -> Settings

This commit is contained in:
Michael McCandless 2015-05-26 09:54:44 -04:00 committed by mikemccand
parent 44fe99a3a8
commit 9d1f6f7615
4 changed files with 4 additions and 4 deletions

View File

@ -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/>

View File

@ -36,7 +36,7 @@ import static org.hamcrest.Matchers.*;
/**
*/
public class ImmutableSettingsTests extends ElasticsearchTestCase {
public class SettingsTests extends ElasticsearchTestCase {
@Test
public void testCamelCaseSupport() {

View File

@ -19,6 +19,6 @@
package org.elasticsearch.common.settings.bar;
//used in ImmutableSettingsTest
//used in SettingsTest
public class BarTestClass {
}

View File

@ -19,6 +19,6 @@
package org.elasticsearch.common.settings.foo;
// used in ImmutableSettingsTest
// used in SettingsTest
public class FooTestClass {
}