-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P4
-
Affects Version/s: 8
-
Component/s: javafx
protected final void nextReplace(int from, int to, ArrayList<? extends E> removed)
should be
protected final void nextReplace(int from, int to, List<? extends E> removed) {
Issue found by Richard Bair.
should be
protected final void nextReplace(int from, int to, List<? extends E> removed) {
Issue found by Richard Bair.