mirror of https://github.com/apache/lucene.git
fix compiler warning
This commit is contained in:
parent
44bd24b1d4
commit
42d1eb5364
|
@ -117,7 +117,7 @@ public class Test2BPoints extends LuceneTestCase {
|
||||||
}
|
}
|
||||||
|
|
||||||
final int numDocs = (Integer.MAX_VALUE / 26) + 1;
|
final int numDocs = (Integer.MAX_VALUE / 26) + 1;
|
||||||
long counter = 0;
|
int counter = 0;
|
||||||
for (int i = 0; i < numDocs; i++) {
|
for (int i = 0; i < numDocs; i++) {
|
||||||
Document doc = new Document();
|
Document doc = new Document();
|
||||||
for (int j=0;j<26;j++) {
|
for (int j=0;j<26;j++) {
|
||||||
|
|
Loading…
Reference in New Issue