LUCENE-5969: add missing @Override

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/branches/lucene5969@1633442 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Robert Muir 2014-10-21 19:51:09 +00:00
parent a6c26f84a8
commit e8e9b287ee
2 changed files with 2 additions and 0 deletions

View File

@ -123,6 +123,7 @@ final class Lucene40FieldReader extends Terms implements Accountable {
}
/** For debugging -- used by CheckIndex too*/
@Override
public Lucene40Stats getStats() throws IOException {
return new Lucene40SegmentTermsEnum(this).computeBlockStats();
}

View File

@ -120,6 +120,7 @@ public final class FieldReader extends Terms implements Accountable {
}
/** For debugging -- used by CheckIndex too*/
@Override
public Stats getStats() throws IOException {
return new SegmentTermsEnum(this).computeBlockStats();
}