fix typo in ParsedCardinality comment and add //norelease comment on DocValueFormat dep
This commit is contained in:
parent
7f730c9489
commit
5ccb4a0bbd
|
@ -33,8 +33,9 @@ public class ParsedCardinality extends ParsedAggregation implements Cardinality
|
|||
|
||||
@Override
|
||||
public String getValueAsString() {
|
||||
// InternalCardinality doesn't print "value_as_string", but you can get a formated value using
|
||||
// InternalCardinality doesn't print "value_as_string", but you can get a formatted value using
|
||||
// getValueAsString(). That method uses the raw formatter so we also use it here.
|
||||
//norelease is it worth doing Double.toString(value) and removing the dependency to DocValueFormat.RAW ?
|
||||
return DocValueFormat.RAW.format((double) cardinalityValue);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue