Skip to content


Closed Wrong code form method isXXXEmpty in generated bean
nuiton / eugene #173 · created by Tony Chemit
Test is reverted, was:
public boolean isXXXEmpty() {
   return xXX != null && !xXX.isEmpty();
}
but should be
public boolean isXXXEmpty() {
   return xXX == null || xXX.isEmpty();
}
*(from re...
updated