mirror of
https://github.com/corda/corda.git
synced 2025-03-17 17:45:17 +00:00
CP: StringBuilder.append(char[])
This commit is contained in:
parent
70b5ea6838
commit
91282a040f
@ -70,6 +70,10 @@ public class StringBuilder implements CharSequence, Appendable {
|
||||
return append(new String(b, offset, length));
|
||||
}
|
||||
|
||||
public StringBuilder append(char[] b) {
|
||||
return append(new String(b));
|
||||
}
|
||||
|
||||
public StringBuilder append(Object o) {
|
||||
return append(o == null ? "null" : o.toString());
|
||||
}
|
||||
|
Loading…
x
Reference in New Issue
Block a user