avoid access synthetic methods

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1231728 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Michael McCandless 2012-01-15 19:04:11 +00:00
parent 2125313a90
commit 0e20759b0d
2 changed files with 5 additions and 3 deletions

View File

@ -1216,8 +1216,9 @@ public class BlockTreeTermsReader extends FieldsProducer {
//System.out.println();
// computeBlockStats().print(System.out);
}
private void initIndexInput() {
// Not private to avoid synthetic access$NNN methods
void initIndexInput() {
if (this.in == null) {
this.in = (IndexInput) BlockTreeTermsReader.this.in.clone();
}

View File

@ -164,7 +164,8 @@ public class Lucene40TermVectorsReader extends TermVectorsReader {
return tvf;
}
private void seekTvx(final int docNum) throws IOException {
// Not private to avoid synthetic access$NNN methods
void seekTvx(final int docNum) throws IOException {
tvx.seek((docNum + docStoreOffset) * 16L + FORMAT_SIZE);
}