mirror of
https://github.com/corda/corda.git
synced 2025-06-13 12:48:18 +00:00
add a couple of StringBuffer.append overloads
This commit is contained in:
@ -30,6 +30,16 @@ public class StringBuffer implements CharSequence {
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer append(CharSequence s) {
|
||||
sb.append(s);
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer append(StringBuffer s) {
|
||||
sb.append(s);
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer append(Object o) {
|
||||
sb.append(o);
|
||||
return this;
|
||||
|
Reference in New Issue
Block a user