File tree Expand file tree Collapse file tree 1 file changed +4
-4
lines changed
src/main/java/org/elasticsearch/index/fielddata/ordinals Expand file tree Collapse file tree 1 file changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -43,9 +43,9 @@ public class SparseMultiArrayOrdinals implements Ordinals {
43
43
private final int [][] storageOrdinals ;
44
44
45
45
// The n-th bit to shift the index of the storage array to inside the lookup pointer
46
- private final int storageShift ;
47
- private final int numOrds ;
48
- private final int numDocs ;
46
+ final int storageShift ;
47
+ final int numOrds ;
48
+ final int numDocs ;
49
49
50
50
private long size ;
51
51
@@ -173,8 +173,8 @@ static class Docs implements Ordinals.Docs {
173
173
private final SparseMultiArrayOrdinals parent ;
174
174
private final int [] lookup ;
175
175
private final int [][] ordinals ;
176
- private final IterImpl iter ;
177
176
177
+ private final IterImpl iter ;
178
178
private final IntArrayRef intsScratch ;
179
179
180
180
public Docs (SparseMultiArrayOrdinals parent , int [] lookup , int [][] ordinals ) {
You can’t perform that action at this time.
0 commit comments