heap o' bugfixes

This commit is contained in:
Joel Dice
2007-08-19 20:57:32 -06:00
parent 7a340fd8fb
commit e2f3e80bdf
11 changed files with 47 additions and 49 deletions

View File

@ -31,7 +31,7 @@ public final class Double extends Number {
}
public static String toString(double v) {
return "todo";
return "Double.toString: todo";
}
public byte byteValue() {
@ -60,7 +60,7 @@ public final class Double extends Number {
public static double parseDouble(String s) {
// todo
return 0.0;
throw new NumberFormatException(s);
}
public static native long doubleToRawLongBits(double value);