Removing debug print statements

git-svn-id: https://svn.apache.org/repos/asf/lucene/solr/trunk@816376 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Shalin Shekhar Mangar 2009-09-17 20:53:14 +00:00
parent 79f61b78c3
commit bd3aa39b8e
1 changed files with 0 additions and 2 deletions

View File

@ -111,10 +111,8 @@ public class BinaryUpdateRequestHandler extends ContentStreamHandlerBase {
for (String s : l) {
DeleteUpdateCommand delcmd = new DeleteUpdateCommand();
if (isId) {
System.out.println("delete by id : " + s);
delcmd.id = s;
} else {
System.out.println("delete by query = " + s);
delcmd.query = s;
}
delcmd.fromCommitted = true;