mirror of https://github.com/apache/lucene.git
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) {
|
||||
break;
|
||||
}
|
||||
final Short termval = parser.parseShort(term);
|
||||
final short termval = parser.parseShort(term);
|
||||
docs = termsEnum.docs(null, docs);
|
||||
while (true) {
|
||||
final int docID = docs.nextDoc();
|
||||
|
|
Loading…
Reference in New Issue