diff --git a/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointsWriter.java b/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointsWriter.java index 9098cfbb01a..2b1e13dfedf 100644 --- a/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointsWriter.java +++ b/lucene/core/src/java/org/apache/lucene/codecs/lucene60/Lucene60PointsWriter.java @@ -41,9 +41,13 @@ import org.apache.lucene.util.bkd.BKDWriter; /** Writes dimensional values */ public class Lucene60PointsWriter extends PointsWriter implements Closeable { - + + /** Output used to write the BKD tree data file */ protected final IndexOutput dataOut; + + /** Maps field name to file pointer in the data file where the BKD index is located. */ protected final Map indexFPs = new HashMap<>(); + final SegmentWriteState writeState; final int maxPointsInLeafNode; final double maxMBSortInHeap;