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:
Michael McCandless 2012-12-11 23:57:53 +00:00
parent fd284bd6f1
commit 504d21f137
1 changed files with 1 additions and 1 deletions

View File

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