mirror of
https://github.com/corda/corda.git
synced 2025-02-07 03:29:19 +00:00
add StringBuffer.append(char[])
This commit is contained in:
parent
074f1a3853
commit
2fe571c461
@ -70,6 +70,11 @@ public class StringBuffer implements CharSequence {
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer append(char[] b) {
|
||||
sb.append(b, 0, b.length);
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer insert(int i, String s) {
|
||||
sb.insert(i, s);
|
||||
return this;
|
||||
|
Loading…
x
Reference in New Issue
Block a user