This commit is contained in:
Joel Dice
2007-08-14 19:14:55 -06:00
parent 71c7013808
commit f22dda0df1
11 changed files with 129 additions and 18 deletions

View File

@ -21,6 +21,11 @@ public class StringBuffer {
return this;
}
public synchronized StringBuffer append(char v) {
sb.append(v);
return this;
}
public synchronized StringBuffer append(int v) {
sb.append(v);
return this;