Fix compilation against failure against JDK 7u65

Interface java.util.Iterator<E> requires void remove(), but it's not
provided
This commit is contained in:
Yen Chi Hsuan
2014-08-26 17:13:19 +08:00
parent 4774e6d6d3
commit b567883651
@@ -137,6 +137,12 @@ public class ActionList extends ArrayList<Action> {
}
return null;
}
@Override
public void remove()
{
throw UnsupportedOperationException();
}
};
}