NORELEASE for getWriteableName in aggregations base class

This commit is contained in:
Nik Everett 2016-04-14 11:33:03 -04:00
parent f095e64825
commit 9080f51340
2 changed files with 5 additions and 0 deletions

View File

@ -190,6 +190,7 @@ public abstract class AggregatorBuilder<AB extends AggregatorBuilder<AB>> extend
@Override
public String getWriteableName() {
// NORELEASE remove this before 5.0.0GA - all builders will implement this method on their own.
return type.stream().toUtf8();
}

View File

@ -51,4 +51,8 @@ public class HistogramAggregatorBuilder extends AbstractHistogramBuilder<Histogr
parent, subFactoriesBuilder, metaData);
}
@Override
public String getWriteableName() {
return NAME;
}
}