jpountz commented on a change in pull request #546: LUCENE-8620: LatLonShape 
contains
URL: https://github.com/apache/lucene-solr/pull/546#discussion_r250129373
 
 

 ##########
 File path: lucene/sandbox/src/java/org/apache/lucene/geo/Rectangle2D.java
 ##########
 @@ -216,6 +300,11 @@ private static boolean bboxContainsPoint(int x, int y, 
int minX, int maxX, int m
     return (x < minX || x > maxX || y < minY || y > maxY) == false;
   }
 
+  /** static utility method to check if a bounding box is disjoint with a 
point */
+  private static boolean bboxContainsPointNotInEdge(int x, int y, int minX, 
int maxX, int minY, int maxY) {
 
 Review comment:
   this doesn't seem to be called anywhere?

----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on GitHub and use the
URL above to go to the specific comment.
 
For queries about this service, please contact Infrastructure at:
us...@infra.apache.org


With regards,
Apache Git Services

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@lucene.apache.org
For additional commands, e-mail: dev-h...@lucene.apache.org

Reply via email to