replaced StringBuffer with StringBuilder

master
melvin 2011-09-03 15:13:08 +08:00
parent 8fbd693783
commit a3255b9d22
1 changed files with 1 additions and 1 deletions

View File

@ -263,7 +263,7 @@ public class MagicGame {
}
public String getIdString() {
StringBuffer sb = new StringBuffer(toString());
StringBuilder sb = new StringBuilder(toString());
sb.append('\n');
sb.append(keys[0]);
for (int i = 1; i < keys.length; i++) {