mirror of
https://github.com/apache/lucene.git
synced 2025-02-16 23:15:46 +00:00
don't box and unbox
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1183740 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
7af9fbd16d
commit
9ce0604126
@ -119,7 +119,7 @@ public class ShortValuesCreator extends CachedArrayCreator<ShortValues>
|
|||||||
if (term == null) {
|
if (term == null) {
|
||||||
break;
|
break;
|
||||||
}
|
}
|
||||||
final Short termval = parser.parseShort(term);
|
final short termval = parser.parseShort(term);
|
||||||
docs = termsEnum.docs(null, docs);
|
docs = termsEnum.docs(null, docs);
|
||||||
while (true) {
|
while (true) {
|
||||||
final int docID = docs.nextDoc();
|
final int docID = docs.nextDoc();
|
||||||
|
Loading…
x
Reference in New Issue
Block a user