|
@@ -146,7 +146,6 @@ public class JsonApiManager extends BaseJsonApiManager {
|
|
|
final String allPageCount = Integer.toString(data.getAllPageCount());
|
|
|
final List<Map<String, Object>> documentItems = data.getDocumentItems();
|
|
|
final FacetResponse facetResponse = data.getFacetResponse();
|
|
|
- final GeoInfo geoInfo = params.getGeoInfo();
|
|
|
final String queryId = data.getQueryId();
|
|
|
|
|
|
buf.append("\"q\":");
|
|
@@ -251,11 +250,6 @@ public class JsonApiManager extends BaseJsonApiManager {
|
|
|
}
|
|
|
buf.append(']');
|
|
|
}
|
|
|
- if (geoInfo != null && geoInfo.toQueryBuilder() != null) {
|
|
|
- buf.append(',');
|
|
|
- buf.append("\"geo\":");
|
|
|
- buf.append(toGeoRequestString(geoInfo));
|
|
|
- }
|
|
|
}
|
|
|
} catch (final Exception e) {
|
|
|
status = 1;
|