changeset 3158:aae35f1ac70b

8138598: Incorrect reference to JLS in javadoc for Types.isSignaturePolymorphic() Reviewed-by: mcimadamore
author sadayapalam
date Tue, 08 Dec 2015 18:01:03 +0530
parents 56df7bb479f1
children 7b99e5d09409
files src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java
diffstat 1 files changed, 1 insertions(+), 1 deletions(-) [+]
line wrap: on
line diff
--- a/src/jdk.compiler/share/classes/com/sun/tools/javac/code/Types.java	Tue Dec 08 10:14:40 2015 +0530
+++ b/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.