mirror of https://github.com/apache/lucene.git
make package private to avoid access$N at runtime
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1420487 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
fd284bd6f1
commit
504d21f137
|
@ -122,7 +122,7 @@ public final class Lucene41PostingsReader extends PostingsReaderBase {
|
|||
/**
|
||||
* Read values that have been written using variable-length encoding instead of bit-packing.
|
||||
*/
|
||||
private static void readVIntBlock(IndexInput docIn, int[] docBuffer,
|
||||
static void readVIntBlock(IndexInput docIn, int[] docBuffer,
|
||||
int[] freqBuffer, int num, boolean indexHasFreq) throws IOException {
|
||||
if (indexHasFreq) {
|
||||
for(int i=0;i<num;i++) {
|
||||
|
|
Loading…
Reference in New Issue