mirror of
https://github.com/corda/corda.git
synced 2025-06-12 20:28:18 +00:00
Implemented printing of doubles using snprintf
This commit is contained in:
@ -26,7 +26,7 @@ public final class Float extends Number {
|
||||
}
|
||||
|
||||
public static String toString(float v) {
|
||||
return "Float.toString: todo";
|
||||
return Double.toString(v);
|
||||
}
|
||||
|
||||
public byte byteValue() {
|
||||
|
Reference in New Issue
Block a user