fix for indices not set properly with StringDict(Reader)

This commit is contained in:
Ben Fry
2014-01-26 17:29:38 -05:00
parent fd61142a1f
commit 40170baa91
3 changed files with 5 additions and 0 deletions

View File

@@ -63,6 +63,7 @@ public class StringDict {
if (pieces.length == 2) {
keys[count] = pieces[0];
values[count] = pieces[1];
indices.put(keys[count], count);
count++;
}
}