- 
    Bug 
- 
    Resolution: Fixed
- 
     P4 P4
- 
    8
                        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.