Hi,

Bug:
https://bugs.openjdk.java.net/browse/JDK-8157502

make docs appears to be currently broken, fails with:
---
# Running javadoc for support/javadoc/api/index.html
.../jdk/src/java.base/share/classes/java/lang/StrictMath.java:855: error: reference not found
     * @see Math#multiplyFull(long,long)
            ^
1 error
---

As Math#multiplyFull(long,long) does not appear to exist, I assume the reference should be to Math#multiplyFull(int,int):

diff -r 4cd0d71cf20e src/java.base/share/classes/java/lang/StrictMath.java
--- a/src/java.base/share/classes/java/lang/StrictMath.java Fri May 20 16:34:14 2016 -0700 +++ b/src/java.base/share/classes/java/lang/StrictMath.java Sat May 21 07:29:57 2016 +0200
@@ -852,7 +852,7 @@
      * @param x the first value
      * @param y the second value
      * @return the result
-     * @see Math#multiplyFull(long,long)
+     * @see Math#multiplyFull(int,int)
      * @since 1.9
      */
     public static long multiplyFull(int x, int y) {


Does this seem OK?

Thanks,
    Jan

Reply via email to