This closes #451
This commit is contained in:
commit
c2d51c07f0
|
@ -1050,7 +1050,7 @@ public abstract class ActiveMQTestBase extends Assert {
|
||||||
if (value != null && prop.getWriteMethod() != null && prop.getReadMethod() == null) {
|
if (value != null && prop.getWriteMethod() != null && prop.getReadMethod() == null) {
|
||||||
System.out.println("WriteOnly property " + prop.getName() + " on " + pojo.getClass());
|
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 &&
|
prop.getReadMethod() != null &&
|
||||||
!ignoreSet.contains(prop.getName())) {
|
!ignoreSet.contains(prop.getName())) {
|
||||||
System.out.println("Validating " + prop.getName() + " type = " + prop.getPropertyType());
|
System.out.println("Validating " + prop.getName() + " type = " + prop.getPropertyType());
|
||||||
|
|
Loading…
Reference in New Issue