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:
Robert Muir 2012-08-03 20:53:53 +00:00
parent 8f726e254b
commit 60deff559f
1 changed files with 0 additions and 5 deletions

View File

@ -54,9 +54,4 @@ public final class StringField extends Field {
public StringField(String name, String value, Store stored) {
super(name, value, stored == Store.YES ? TYPE_STORED : TYPE_NOT_STORED);
}
@Override
public String stringValue() {
return (fieldsData == null) ? null : fieldsData.toString();
}
}