mirror of https://github.com/apache/lucene.git
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:
parent
79f61b78c3
commit
bd3aa39b8e
|
@ -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;
|
||||
|
|
Loading…
Reference in New Issue