Remove unchecked warnings rendered unnecessary

This commit is contained in:
Jason Tedor 2015-12-02 10:55:25 -05:00
parent fbe736c9bb
commit 199a05311e
1 changed files with 0 additions and 2 deletions

View File

@ -119,12 +119,10 @@ public class Template extends Script {
return template;
}
@SuppressWarnings("unchecked")
public static Script parse(Map<String, Object> config, boolean removeMatchedEntries, ParseFieldMatcher parseFieldMatcher) {
return new TemplateParser(Collections.emptyMap(), MustacheScriptEngineService.NAME).parse(config, removeMatchedEntries, parseFieldMatcher);
}
@SuppressWarnings("unchecked")
public static Template parse(XContentParser parser, ParseFieldMatcher parseFieldMatcher) throws IOException {
return new TemplateParser(Collections.emptyMap(), MustacheScriptEngineService.NAME).parse(parser, parseFieldMatcher);
}