mirror of https://github.com/apache/lucene.git
SOLR-390: notation for future devs
git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@588352 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
3cb76525d1
commit
54de92ed53
|
@ -63,6 +63,8 @@ public final class HashDocSet extends DocSetBase {
|
|||
mask=tsize-1;
|
||||
|
||||
table = new int[tsize];
|
||||
// (for now) better then: Arrays.fill(table, EMPTY);
|
||||
// https://issues.apache.org/jira/browse/SOLR-390
|
||||
for (int i=tsize-1; i>=0; i--) table[i]=EMPTY;
|
||||
|
||||
for (int i=offset; i<len; i++) {
|
||||
|
|
Loading…
Reference in New Issue