mirror of
https://github.com/corda/corda.git
synced 2025-01-03 19:54:13 +00:00
Merge pull request #237 from pcarrier/sb
CP: StringBuilder.append(char[])
This commit is contained in:
commit
1a8d557c72
@ -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…
Reference in New Issue
Block a user