LUCENE-3971: Remove dead code

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1326082 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Uwe Schindler 2012-04-14 10:13:14 +00:00
parent 81d8a18641
commit d3b73b2ec4
1 changed files with 0 additions and 7 deletions

View File

@ -50,11 +50,6 @@ public class MappingCharFilter extends BaseCharFilter {
this.normMap = normMap; this.normMap = normMap;
} }
@Override
protected int correct(int currentOff) {
return super.correct(currentOff);
}
@Override @Override
public int read() throws IOException { public int read() throws IOException {
while(true) { while(true) {
@ -121,8 +116,6 @@ public class MappingCharFilter extends BaseCharFilter {
if (result == null) { if (result == null) {
pushChar(chr); pushChar(chr);
} }
} else {
} }
} }
if (result == null && map.normStr != null) { if (result == null && map.normStr != null) {