BootstrapSettings final with private constructor

This commit is contained in:
Jason Tedor 2016-02-08 17:24:09 -05:00
parent 3dd827017c
commit c121af63b4
1 changed files with 4 additions and 1 deletions

View File

@ -22,7 +22,10 @@ package org.elasticsearch.bootstrap;
import org.elasticsearch.common.settings.Setting;
import org.elasticsearch.common.settings.Setting.Scope;
public class BootstrapSettings {
public final class BootstrapSettings {
private BootstrapSettings() {
}
// TODO: remove this: http://www.openbsd.org/papers/hackfest2015-pledge/mgp00005.jpg
/**