Update StringList.java

This commit is contained in:
inkwellsiesta
2016-06-01 16:03:05 -04:00
parent f71d02df4c
commit b97d0ea88b

View File

@@ -657,6 +657,7 @@ public class StringList implements Iterable<String> {
public void remove() {
StringList.this.remove(index);
index--;
}
public String next() {
@@ -768,4 +769,4 @@ public class StringList implements Iterable<String> {
sb.append(" ]");
return sb.toString();
}
}
}