# HG changeset patch # User sadayapalam # Date 1449577863 -19800 # Node ID 6852cec79bf439846b9db6600d3139645b71c53e # Parent 019cd319c62f3511e058cec31441950d3a72b7d3 8138598: Incorrect reference to JLS in javadoc for Types.isSignaturePolymorphic() Reviewed-by: mcimadamore diff -r 019cd319c62f -r 6852cec79bf4 langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java --- a/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java Tue Dec 08 10:14:40 2015 +0530 +++ b/langtools/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java Tue Dec 08 18:01:03 2015 +0530 @@ -1056,7 +1056,7 @@ } /** - * A polymorphic signature method (JLS SE 7, 8.4.1) is a method that + * A polymorphic signature method (JLS 15.12.3) is a method that * (i) is declared in the java.lang.invoke.MethodHandle class, (ii) takes * a single variable arity parameter (iii) whose declared type is Object[], * (iv) has a return type of Object and (v) is native.