Merge pull request #15289 from jpountz/fix/mapper_tokenized

Mapper parsers should not check for a `tokenized` property.
This commit is contained in:
Adrien Grand 2015-12-08 09:02:38 +01:00
commit 47bcb33006
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();