-
Bug
-
Resolution: Fixed
-
P3
-
1.4.0
-
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.