Skip to content

Commit

Permalink
Absorb ImmutableSettings into Settings
Browse files Browse the repository at this point in the history
  • Loading branch information
mikemccand committed May 26, 2015
1 parent 1dd99dc commit 7db223e
Showing 1 changed file with 1 addition and 2 deletions.
Expand Up @@ -24,7 +24,6 @@
import org.elasticsearch.common.Strings;
import org.elasticsearch.common.base.Predicate;
import org.elasticsearch.common.collect.ImmutableList;
import org.elasticsearch.common.settings.ImmutableSettings;
import org.elasticsearch.common.settings.Settings;
import org.elasticsearch.common.xcontent.XContentBuilder;
import org.elasticsearch.index.query.QueryBuilders;
Expand Down Expand Up @@ -58,7 +57,7 @@ public class CouchdbRiverIntegrationTest extends AbstractCouchdbTest {

@Override
protected Settings nodeSettings(int nodeOrdinal) {
return ImmutableSettings.builder()
return Settings.builder()
.put(super.nodeSettings(nodeOrdinal))
.put("plugins." + PluginsService.LOAD_PLUGIN_FROM_CLASSPATH, true)
.build();
Expand Down

0 comments on commit 7db223e

Please sign in to comment.