mirror of
https://github.com/processing/processing4.git
synced 2026-02-13 10:30:44 +01:00
fixed iterator remove() methods so they dont skip container elements
This commit is contained in:
committed by
Leslie Watkins
parent
3aefae4470
commit
2bb3582195
@@ -158,6 +158,7 @@ public class FloatDict {
|
||||
|
||||
public void remove() {
|
||||
removeIndex(index);
|
||||
index--;
|
||||
}
|
||||
|
||||
public String next() {
|
||||
@@ -218,6 +219,7 @@ public class FloatDict {
|
||||
|
||||
public void remove() {
|
||||
removeIndex(index);
|
||||
index--;
|
||||
}
|
||||
|
||||
public Float next() {
|
||||
|
||||
Reference in New Issue
Block a user