summaryrefslogtreecommitdiff
path: root/core/src/main/java/org/elasticsearch/index/codec/CodecService.java
diff options
context:
space:
mode:
Diffstat (limited to 'core/src/main/java/org/elasticsearch/index/codec/CodecService.java')
-rw-r--r--core/src/main/java/org/elasticsearch/index/codec/CodecService.java6
1 files changed, 3 insertions, 3 deletions
diff --git a/core/src/main/java/org/elasticsearch/index/codec/CodecService.java b/core/src/main/java/org/elasticsearch/index/codec/CodecService.java
index 3edc509b7e..f8d19be3c8 100644
--- a/core/src/main/java/org/elasticsearch/index/codec/CodecService.java
+++ b/core/src/main/java/org/elasticsearch/index/codec/CodecService.java
@@ -40,10 +40,10 @@ public class CodecService {
private final Map<String, Codec> codecs;
- public final static String DEFAULT_CODEC = "default";
- public final static String BEST_COMPRESSION_CODEC = "best_compression";
+ public static final String DEFAULT_CODEC = "default";
+ public static final String BEST_COMPRESSION_CODEC = "best_compression";
/** the raw unfiltered lucene default. useful for testing */
- public final static String LUCENE_DEFAULT_CODEC = "lucene_default";
+ public static final String LUCENE_DEFAULT_CODEC = "lucene_default";
public CodecService(@Nullable MapperService mapperService, ESLogger logger) {
final MapBuilder<String, Codec> codecs = MapBuilder.<String, Codec>newMapBuilder();