Remove debug printf statements that I had left in accidentally

git-svn-id: https://svn.apache.org/repos/asf/lucene/dev/trunk@1657515 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2015-02-05 10:28:24 +00:00
parent 93ba7da65f
commit b3f57c8343
1 changed files with 0 additions and 2 deletions

View File

@ -1666,7 +1666,6 @@ abstract public class SolrExampleTests extends SolrExampleTestsBase
q.setParam("mlt.count", "2");
q.setParam("mlt.fl", "x_s,y_s,z_s");
QueryResponse response = client.query(q);
System.out.printf("Results: " + response.getResponse());
assertEquals(20, response.getResults().getNumFound());
NamedList<Object> moreLikeThis = (NamedList<Object>) response.getResponse().get("moreLikeThis");
assertNotNull("MoreLikeThis response should not have been null", moreLikeThis);
@ -1685,7 +1684,6 @@ abstract public class SolrExampleTests extends SolrExampleTestsBase
q.setParam("mlt.count", "2");
q.setParam("mlt.fl", "x_s", "y_s", "z_s");
response = client.query(q);
System.out.printf("Results: " + response.getResponse());
assertEquals(20, response.getResults().getNumFound());
moreLikeThis = (NamedList<Object>) response.getResponse().get("moreLikeThis");
assertNotNull("MoreLikeThis response should not have been null", moreLikeThis);