mirror of
https://github.com/corda/corda.git
synced 2025-01-22 12:28:11 +00:00
implement StringBuffer.append(boolean)
This commit is contained in:
parent
88a8e74a53
commit
bb701f309c
@ -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;
|
||||
|
Loading…
Reference in New Issue
Block a user