bug fixing on Dict and List classes, add Iterable constructor

This commit is contained in:
Ben Fry
2013-05-01 14:54:54 -04:00
parent 2bc1cce04d
commit f8d25375cc
7 changed files with 37 additions and 1 deletions

View File

@@ -3391,7 +3391,7 @@ public class Table {
public StringDict getStringDict(int keyColumn, int valueColumn) {
return new StringDict(getStringColumn(keyColumn),
getStringColumn(valueColumn));
getStringColumn(valueColumn));
}