mirror of https://github.com/apache/lucene.git
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:
parent
81d8a18641
commit
d3b73b2ec4
|
@ -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) {
|
||||||
|
|
Loading…
Reference in New Issue