< prev index next >

src/java.base/share/classes/jdk/internal/misc/JavaLangAccess.java

Print this page

        

*** 122,135 **** * Invokes the finalize method of the given object. */ void invokeFinalize(Object o) throws Throwable; /** ! * Invokes Long.formatUnsignedLong(long val, int shift, char[] buf, int offset, int len) */ ! void formatUnsignedLong(long val, int shift, char[] buf, int offset, int len); ! ! /** ! * Invokes Integer.formatUnsignedInt(long val, int shift, char[] buf, int offset, int len) ! */ ! void formatUnsignedInt(int val, int shift, char[] buf, int offset, int len); } --- 122,130 ---- * Invokes the finalize method of the given object. */ void invokeFinalize(Object o) throws Throwable; /** ! * Invokes Long.fastUUID */ ! String fastUUID(long lsb, long msb); }
< prev index next >