mirror of
https://github.com/corda/corda.git
synced 2025-06-14 13:18:18 +00:00
Adds appending of doubles to a StringBuffer
This commit is contained in:
@ -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;
|
||||||
|
Reference in New Issue
Block a user