fix comment

This commit is contained in:
kimchy 2010-08-02 16:35:08 +03:00
parent 32e26a6bd0
commit 6ed89ad406
1 changed files with 2 additions and 2 deletions

View File

@ -73,8 +73,8 @@ public class GeoDistanceFacetCollectorParser implements FacetCollectorParser {
} else if (token == XContentParser.Token.START_ARRAY) {
if ("ranges".equals(currentName) || "entries".equals(currentName)) {
// "ranges" : [
// { "from" : "0', to : "12.5" }
// { "from" : "12.5" }
// { "from" : 0, "to" : 12.5 }
// { "from" : 12.5 }
// ]
while ((token = parser.nextToken()) != XContentParser.Token.END_ARRAY) {
double from = Double.NEGATIVE_INFINITY;