fixed iterator remove() methods so they dont skip container elements

This commit is contained in:
inkwellsiesta
2016-06-01 16:00:44 -04:00
committed by Leslie Watkins
parent 3aefae4470
commit 2bb3582195
6 changed files with 10 additions and 1 deletions

View File

@@ -160,6 +160,7 @@ public class StringDict {
public void remove() {
removeIndex(index);
index--;
}
public String next() {
@@ -219,6 +220,7 @@ public class StringDict {
public void remove() {
removeIndex(index);
index--;
}
public String next() {