mirror of https://github.com/apache/lucene.git
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:
parent
2125313a90
commit
0e20759b0d
|
@ -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();
|
||||
}
|
||||
|
|
|
@ -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);
|
||||
}
|
||||
|
||||
|
|
Loading…
Reference in New Issue