H
hiwa
JLS 12.3.3
NoSuchMethodError: A symbolic reference has been encountered that refers
to a specific method of a specific class or interface, but the class or
interface does not contain a method of that signature.
JLS 8.4.2
Two methods have the same signature if they have the same name and argument
types.
8.4.2 only mentions name and argument types of method, but NoSuchMethodError
should have the signature definition that involves return type.
Should I only say that is a JLS bug and the correct one is 12.3.3?
NoSuchMethodError: A symbolic reference has been encountered that refers
to a specific method of a specific class or interface, but the class or
interface does not contain a method of that signature.
JLS 8.4.2
Two methods have the same signature if they have the same name and argument
types.
8.4.2 only mentions name and argument types of method, but NoSuchMethodError
should have the signature definition that involves return type.
Should I only say that is a JLS bug and the correct one is 12.3.3?