remove some spurious traces in the synchronization tests
| | |
| | | entry.getUserAttributes(), entry.getOperationalAttributes()); |
| | | addOp.setInternalOperation(true); |
| | | addOp.run(); |
| | | System.out.println("adding " + entry.getDN()); |
| | | entryList.addLast(entry.getDN()); |
| | | } |
| | | |
| | |
| | | while (true) |
| | | { |
| | | DN dn = entryList.removeLast(); |
| | | System.out.println("removing : " + dn); |
| | | op = new DeleteOperation(connection, InternalClientConnection |
| | | .nextOperationID(), InternalClientConnection.nextMessageID(), null, |
| | | dn); |
| | | |
| | | op.run(); |
| | | System.out.println("removed : " + dn + " " + op.getResultCode()); |
| | | op.run();; |
| | | } |
| | | } |
| | | catch (NoSuchElementException e) { |