mirror of
https://github.com/processing/processing4.git
synced 2026-02-04 06:09:17 +01:00
fix entries() Iterator in IntDict, FloatDict, StringDict
This commit is contained in:
@@ -193,8 +193,8 @@ public class IntDict {
|
||||
}
|
||||
|
||||
public Entry next() {
|
||||
++index;
|
||||
Entry e = new Entry(keys[index], values[index]);
|
||||
index++;
|
||||
return e;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user