orbiter 19 years ago
parent 839806a775
commit 830167596a

@ -74,14 +74,14 @@ public class kelondroMergeIterator implements Iterator {
private void nexta() { private void nexta() {
try { try {
if (a.hasNext()) na = (String) a.next(); else na = null; if (a.hasNext()) na = a.next(); else na = null;
} catch (ConcurrentModificationException e) { } catch (ConcurrentModificationException e) {
na = null; na = null;
} }
} }
private void nextb() { private void nextb() {
try { try {
if (b.hasNext()) nb = (String) b.next(); else nb = null; if (b.hasNext()) nb = b.next(); else nb = null;
} catch (ConcurrentModificationException e) { } catch (ConcurrentModificationException e) {
nb = null; nb = null;
} }

Loading…
Cancel
Save