Implemented printing of doubles using snprintf

This commit is contained in:
Eric Scharff
2007-10-02 09:23:49 -06:00
parent 243d62a952
commit 7bc85a1247
2 changed files with 7 additions and 4 deletions

View File

@ -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() {