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