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:
Chris M. Hostetter 2007-10-25 20:54:41 +00:00
parent 3cb76525d1
commit 54de92ed53
1 changed files with 2 additions and 0 deletions

View File

@ -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++) {