Skip to content

Commit 46b09fc

Browse files
committed
missed a rename
1 parent 817e54d commit 46b09fc

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

x-pack/plugin/analytics/src/main/java/org/elasticsearch/xpack/analytics/mapper/TDigestFieldMapper.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -111,7 +111,7 @@ protected Parameter<?>[] getParameters() {
111111
public TDigestFieldMapper build(MapperBuilderContext context) {
112112
return new TDigestFieldMapper(
113113
leafName(),
114-
new HistogramFieldType(context.buildFullName(leafName()), meta.getValue()),
114+
new TDigestFieldType(context.buildFullName(leafName()), meta.getValue()),
115115
builderParams(this, context),
116116
this
117117
);
@@ -164,9 +164,9 @@ protected void parseCreateField(DocumentParserContext context) {
164164
throw new UnsupportedOperationException("Parsing is implemented in parse(), this method should NEVER be called");
165165
}
166166

167-
public static class HistogramFieldType extends MappedFieldType {
167+
public static class TDigestFieldType extends MappedFieldType {
168168

169-
public HistogramFieldType(String name, Map<String, String> meta) {
169+
public TDigestFieldType(String name, Map<String, String> meta) {
170170
super(name, IndexType.docValuesOnly(), false, meta);
171171
}
172172

0 commit comments

Comments
 (0)