add a remove() method, which apparently java 8 did not need

This commit is contained in:
David Renshaw 2014-06-20 20:52:40 -04:00
parent 8937d0607a
commit c797a7d2a4

View file

@ -32,6 +32,9 @@ public final class StructList {
public boolean hasNext() {
return idx < list.size();
}
public void remove() {
throw new UnsupportedOperationException();
}
}
public java.util.Iterator<T> iterator() {