Merge commit 'origin/powerpc' into powerpc

This commit is contained in:
Joel Dice 2009-03-09 18:53:39 -06:00
commit 3e08a2f875

View File

@ -90,6 +90,10 @@ public final class Long extends Number implements Comparable<Long> {
return toString(v, 10);
}
public static String toHexString(long v) {
return toString(v, 16);
}
public byte byteValue() {
return (byte) value;
}