jpountz commented on a change in pull request #1040: LUCENE-9067:
Polygon2D#contains is now thread safe
URL: https://github.com/apache/lucene-solr/pull/1040#discussion_r351207768
##########
File path: lucene/core/src/java/org/apache/lucene/geo/EdgeTree.java
##########
@@ -50,6 +49,10 @@
EdgeTree left;
/** right child edge, or null */
EdgeTree right;
+ /** helper bytes to signal if a point is on an edge, it is within the edge
tree or disjoint */
+ final private byte FALSE = 0x00;
Review comment:
can you make them static?
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]
With regards,
Apache Git Services
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]