clean up Field.get() and Field.set() implementations

This commit is contained in:
Joel Dice
2007-08-18 11:15:03 -06:00
parent 3625a02910
commit d169e4eadf
5 changed files with 296 additions and 170 deletions

View File

@ -53,8 +53,7 @@ public final class Float extends Number {
return (double) value;
}
public static int floatToRawIntBits(float value) {
// todo
return 0;
}
public static native int floatToRawIntBits(float value);
public static native float intBitsToFloat(int bits);
}