making swap public

This commit is contained in:
Ben Fry
2013-09-13 02:19:56 -04:00
parent 85cf5979e7
commit da0b526f68
3 changed files with 3 additions and 3 deletions

View File

@@ -527,7 +527,7 @@ public class IntDict {
}
protected void swap(int a, int b) {
public void swap(int a, int b) {
String tkey = keys[a];
int tvalue = values[a];
keys[a] = keys[b];