git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@895662 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Grant Ingersoll 2010-01-04 15:27:27 +00:00
parent 5838738379
commit 23216e7844
1 changed files with 2 additions and 3 deletions

View File

@ -20,7 +20,6 @@ package org.apache.solr.schema;
import org.apache.lucene.document.Fieldable;
import org.apache.lucene.search.SortField;
import org.apache.lucene.spatial.geohash.GeoHashUtils;
import org.apache.solr.common.SolrException;
import org.apache.solr.request.TextResponseWriter;
import org.apache.solr.request.XMLWriter;
import org.apache.solr.search.QParser;
@ -32,8 +31,9 @@ import java.io.IOException;
/**
* This is a class that represents a <a
* href="http://en.wikipedia.org/wiki/Geohash">Geohash</a> field. The field is
* provided as a lat lon pair and is internally represented as a string
* provided as a lat/lon pair and is internally represented as a string.
*
* @see org.apache.solr.search.function.distance.DistanceUtils#parseLatitudeLongitude(double[], String)
*/
public class GeoHashField extends FieldType {
@ -77,6 +77,5 @@ public class GeoHashField extends FieldType {
return new StrFieldSource(field.name);
}
}