implement StringBuffer.append(boolean)

This commit is contained in:
Joel Dice 2008-01-18 16:16:24 -07:00
parent 88a8e74a53
commit bb701f309c

View File

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