zhaih commented on code in PR #12910: URL: https://github.com/apache/lucene/pull/12910#discussion_r1424022318
########## lucene/core/src/java/org/apache/lucene/util/hnsw/NeighborArray.java: ########## @@ -34,14 +34,14 @@ public class NeighborArray { private final boolean scoresDescOrder; private int size; - float[] score; - int[] node; + private float[] scores; + private int[] nodes; Review Comment: good point, let me make them `final` -- 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. To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@lucene.apache.org For additional commands, e-mail: issues-h...@lucene.apache.org