getMethod().getReturnType() != Boolean.TYPE

returns true if the method return type is Boolean rather than boolean.
(i.e. it doesn't like the Boolean class, just the boolean primitive)

the line should be

getMethod().getReturnType() != Boolean.TYPE &&
getMethod().getReturnType()!=Boolean.class

bug exists in 1.3.1 and 1.5

---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]

Reply via email to