diff --git a/jdk/src/share/classes/java/util/Objects.java b/jdk/src/share/classes/java/util/Objects.java index 139e14012da..e526079e37c 100644 --- a/jdk/src/share/classes/java/util/Objects.java +++ b/jdk/src/share/classes/java/util/Objects.java @@ -269,7 +269,7 @@ public final class Objects { * Checks that the specified object reference is not {@code null} and * throws a customized {@link NullPointerException} if it is. * - *
Unlike the method {@link requireNonNull(Object, String}, + *
Unlike the method {@link #requireNonNull(Object, String)}, * this method allows creation of the message to be deferred until * after the null check is made. While this may confer a * performance advantage in the non-null case, when deciding to