-1,
1
};
for (int i = 0; i < iterators.length; i++) {
int n = 0;
TraceIterator it = iterators[i];
TraceEntry last = null;
TraceEntry current = null;
while (it.hasNext()) {
current = it.next();
n ++;
if (n > size) {
fail("Iterator (" + iteratorNames[i] + ") iterates too long.");
}
if (last != null) {