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

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