-
Type:
Bug
-
Resolution: Fixed
-
Priority:
P3
-
Affects Version/s: 1.4.0
-
Component/s: core-libs
-
b40
-
generic
-
generic
The equals method for annotations read at runtime runs this code (in AnnotationInvocationHandler.java):
188 if (v2.getClass() != type)
189 return false;
If v2 is not a normal (dynamic proxy) annotation, this will not work.
188 if (v2.getClass() != type)
189 return false;
If v2 is not a normal (dynamic proxy) annotation, this will not work.