mirror of
https://git.huckle.dev/Huckles-Minecraft-Archive/jpexs-decompiler.git
synced 2026-09-25 13:20:51 +00:00
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:
@@ -137,6 +137,12 @@ public class ActionList extends ArrayList<Action> {
|
||||
}
|
||||
return null;
|
||||
}
|
||||
|
||||
@Override
|
||||
public void remove()
|
||||
{
|
||||
throw UnsupportedOperationException();
|
||||
}
|
||||
};
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user