mirror of
https://github.com/corda/corda.git
synced 2025-02-02 17:21:06 +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;
|
return this;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
public synchronized StringBuffer append(double v) {
|
||||||
|
sb.append(v);
|
||||||
|
return this;
|
||||||
|
}
|
||||||
|
|
||||||
public synchronized StringBuffer append(char[] b, int offset, int length) {
|
public synchronized StringBuffer append(char[] b, int offset, int length) {
|
||||||
sb.append(b, offset, length);
|
sb.append(b, offset, length);
|
||||||
return this;
|
return this;
|
||||||
|
Loading…
x
Reference in New Issue
Block a user