https://issues.apache.org/jira/browse/AMQ-5266 - remove err message print on iterator limit

This commit is contained in:
gtully 2014-09-11 17:07:35 +01:00
parent 5861d86ad3
commit 8cdb5c2c1d
1 changed files with 0 additions and 1 deletions

View File

@ -113,7 +113,6 @@ public final class BTreeNode<Key,Value> {
}
} else {
if (endKey != null && current.keys[nextIndex].equals(endKey)) {
System.err.println("Stopping iterator on reaching: " + endKey);
break;
}
nextEntry = new KeyValueEntry(current.keys[nextIndex], current.values[nextIndex]);