removed sysouts

This commit is contained in:
Colin Goodheart-Smithe 2015-09-23 17:34:28 +01:00
parent 52d9664993
commit 394e551365
1 changed files with 0 additions and 2 deletions

View File

@ -432,11 +432,9 @@ public class NewSearchSourceBuilderTests extends ESTestCase {
protected SearchSourceBuilder parseQuery(String queryAsString, ParseFieldMatcher matcher) throws IOException {
XContentParser parser = XContentFactory.xContent(queryAsString).createParser(queryAsString);
System.out.println(queryAsString);
QueryParseContext context = createParseContext();
context.reset(parser);
context.parseFieldMatcher(matcher);
System.out.println(queryAsString);
return SearchSourceBuilder.PROTOTYPE.fromXContent(parser, context);
}