From 5d31a9f35ce4487044defd55c42a061bc732c46a Mon Sep 17 00:00:00 2001 From: Dalibor Topic Date: Fri, 8 Feb 2008 17:42:56 +0000 Subject: 2008-02-08 Dalibor Topic * m4/acinclude.m4 (CLASSPATH_CHECK_JAVAH) [USER_JAVAH]: Check for gjavah-4.2 and gjavah-4.1. 2008-02-08 Dalibor Topic * vm/reference/java/lang/VMDouble.java (doubleToLongBits): Removed unused method. * native/jni/java-lang/java_lang_VMDouble.c (Java_java_lang_VMDouble_doubleToLongBits): Removed unused function. * include/java_lang_VMDouble.h: Regenerated. * doc/cp-vmintegration.texinfo (java.lang.VMDouble): Removed unused method doubleToLongBits. --- vm/reference/java/lang/VMDouble.java | 16 ---------------- 1 file changed, 16 deletions(-) (limited to 'vm') diff --git a/vm/reference/java/lang/VMDouble.java b/vm/reference/java/lang/VMDouble.java index 8a991c9ad..58b3b45b4 100644 --- a/vm/reference/java/lang/VMDouble.java +++ b/vm/reference/java/lang/VMDouble.java @@ -65,22 +65,6 @@ final class VMDouble initIDs(); } - /** - * Convert the double to the IEEE 754 floating-point "double format" bit - * layout. Bit 63 (the most significant) is the sign bit, bits 62-52 - * (masked by 0x7ff0000000000000L) represent the exponent, and bits 51-0 - * (masked by 0x000fffffffffffffL) are the mantissa. This function - * collapses all versions of NaN to 0x7ff8000000000000L. The result of this - * function can be used as the argument to - * Double.longBitsToDouble(long) to obtain the original - * double value. - * - * @param value the double to convert - * @return the bits of the double - * @see #longBitsToDouble(long) - */ - public static native long doubleToLongBits(double value); - /** * Convert the double to the IEEE 754 floating-point "double format" bit * layout. Bit 63 (the most significant) is the sign bit, bits 62-52 -- cgit v1.2.1