fix entries() Iterator in IntDict, FloatDict, StringDict

This commit is contained in:
Ben Fry
2017-10-11 16:25:16 -04:00
parent 7572e266dc
commit 09de1fad83
3 changed files with 5 additions and 3 deletions

View File

@@ -214,8 +214,8 @@ public class StringDict {
}
public Entry next() {
++index;
Entry e = new Entry(keys[index], values[index]);
index++;
return e;
}