You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@lucene.apache.org by mi...@apache.org on 2016/02/07 11:33:55 UTC

lucene-solr git commit: fix java7 only javadocs warning

Repository: lucene-solr
Updated Branches:
  refs/heads/branch_5x 6539bedd9 -> fdee0a65e


fix java7 only javadocs warning


Project: http://git-wip-us.apache.org/repos/asf/lucene-solr/repo
Commit: http://git-wip-us.apache.org/repos/asf/lucene-solr/commit/fdee0a65
Tree: http://git-wip-us.apache.org/repos/asf/lucene-solr/tree/fdee0a65
Diff: http://git-wip-us.apache.org/repos/asf/lucene-solr/diff/fdee0a65

Branch: refs/heads/branch_5x
Commit: fdee0a65e8156337c009d0b27e5700d519b469e7
Parents: 6539bed
Author: Mike McCandless <mi...@apache.org>
Authored: Sun Feb 7 05:34:31 2016 -0500
Committer: Mike McCandless <mi...@apache.org>
Committed: Sun Feb 7 05:34:31 2016 -0500

----------------------------------------------------------------------
 .../org/apache/lucene/spatial/search/GeoPointInPolygonQuery.java   | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/lucene-solr/blob/fdee0a65/lucene/spatial/src/java/org/apache/lucene/spatial/search/GeoPointInPolygonQuery.java
----------------------------------------------------------------------
diff --git a/lucene/spatial/src/java/org/apache/lucene/spatial/search/GeoPointInPolygonQuery.java b/lucene/spatial/src/java/org/apache/lucene/spatial/search/GeoPointInPolygonQuery.java
index 960cc66..1d7c811 100644
--- a/lucene/spatial/src/java/org/apache/lucene/spatial/search/GeoPointInPolygonQuery.java
+++ b/lucene/spatial/src/java/org/apache/lucene/spatial/search/GeoPointInPolygonQuery.java
@@ -34,7 +34,7 @@ import org.apache.lucene.spatial.util.GeoUtils;
  * to a secondary filter that verifies whether the decoded lat/lon point falls within
  * (or on the boundary) of the bounding box query. Finally, the remaining candidate
  * term is passed to the final point in polygon check. All value comparisons are subject
- * to the same precision tolerance defined in {@value GeoEncodingUtils#TOLERANCE}
+ * to the same precision tolerance defined in {@value org.apache.lucene.spatial.util.GeoEncodingUtils#TOLERANCE}
  *
  * <p>NOTES:
  *    1.  The polygon coordinates need to be in either clockwise or counter-clockwise order.