This closes #451

This commit is contained in:
Clebert Suconic 2016-04-11 16:53:10 -04:00
commit c2d51c07f0
1 changed files with 1 additions and 1 deletions

View File

@ -1050,7 +1050,7 @@ public abstract class ActiveMQTestBase extends Assert {
if (value != null && prop.getWriteMethod() != null && prop.getReadMethod() == null) {
System.out.println("WriteOnly property " + prop.getName() + " on " + pojo.getClass());
}
else if (value != null & prop.getWriteMethod() != null &&
else if (value != null && prop.getWriteMethod() != null &&
prop.getReadMethod() != null &&
!ignoreSet.contains(prop.getName())) {
System.out.println("Validating " + prop.getName() + " type = " + prop.getPropertyType());