mirror of
https://github.com/corda/corda.git
synced 2025-06-13 04:38:19 +00:00
non-working implementation of float and double.toString()
This commit is contained in:
@ -81,6 +81,15 @@ public class StringBuilder {
|
||||
return append(String.valueOf(v));
|
||||
}
|
||||
|
||||
public StringBuilder append(float v) {
|
||||
return append(String.valueOf(v));
|
||||
}
|
||||
|
||||
public StringBuilder append(double v) {
|
||||
return append(String.valueOf(v));
|
||||
}
|
||||
|
||||
|
||||
public char charAt(int i) {
|
||||
if (i < 0 || i >= length) {
|
||||
throw new IndexOutOfBoundsException();
|
||||
|
Reference in New Issue
Block a user