mirror of
https://github.com/corda/corda.git
synced 2025-01-07 13:38:47 +00:00
Adds appending of doubles to a StringBuffer
This commit is contained in:
parent
34cc390286
commit
8a0ffe186f
@ -50,6 +50,11 @@ public class StringBuffer {
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer append(double v) {
|
||||
sb.append(v);
|
||||
return this;
|
||||
}
|
||||
|
||||
public synchronized StringBuffer append(char[] b, int offset, int length) {
|
||||
sb.append(b, offset, length);
|
||||
return this;
|
||||
|
Loading…
Reference in New Issue
Block a user