Mapper parsers should not check for a `tokenized` property.

I don't recall of this property of any of our field mappers and it's not in our
docs so I suspect it's very old. The removal of this property will not fail
version upgrades since none of the field mappers use it in toXContent.
This commit is contained in:
Adrien Grand 2015-12-07 19:15:15 +01:00
parent 3a58af04c0
commit c6a73dfcd5
1 changed files with 0 additions and 3 deletions

View File

@ -197,9 +197,6 @@ public class TypeParsers {
} else if (propName.equals("index")) {
parseIndex(name, propNode.toString(), builder);
iterator.remove();
} else if (propName.equals("tokenized")) {
builder.tokenized(nodeBooleanValue(propNode));
iterator.remove();
} else if (propName.equals(DOC_VALUES)) {
builder.docValues(nodeBooleanValue(propNode));
iterator.remove();