Fixed, thanks.
Pablo Nussembaum wrote:
I found this code in the class AnnotationBinder at line 1110
code:
else if ( returnedClass instanceof Serializable ) {
this check always returns true because a Class object is always
serializable. I change this way:
Code:
else if ( Serializable.class.is
I found this code in the class AnnotationBinder at line 1110
code:
else if ( returnedClass instanceof Serializable ) {
this check always returns true because a Class object is always
serializable. I change this way:
Code:
else if ( Serializable.class.isAssignableFrom(returnedClass) ) {
--
Pab