mirror of https://github.com/apache/lucene.git
remove dead code (same as superclass impl)
git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1369205 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
8f726e254b
commit
60deff559f
|
@ -54,9 +54,4 @@ public final class StringField extends Field {
|
||||||
public StringField(String name, String value, Store stored) {
|
public StringField(String name, String value, Store stored) {
|
||||||
super(name, value, stored == Store.YES ? TYPE_STORED : TYPE_NOT_STORED);
|
super(name, value, stored == Store.YES ? TYPE_STORED : TYPE_NOT_STORED);
|
||||||
}
|
}
|
||||||
|
|
||||||
@Override
|
|
||||||
public String stringValue() {
|
|
||||||
return (fieldsData == null) ? null : fieldsData.toString();
|
|
||||||
}
|
|
||||||
}
|
}
|
||||||
|
|
Loading…
Reference in New Issue