what the fuck was i smoking when i fucked that one up...
This commit is contained in:
parent
c22d867453
commit
6f1780b1be
|
@ -10,7 +10,7 @@ import java.util.Iterator;
|
|||
public final class StringUtilities {
|
||||
|
||||
public static boolean isEmptyValue(Object object) {
|
||||
return object != null && object.toString().length() > 0;
|
||||
return object == null || object.toString().length() == 0;
|
||||
}
|
||||
|
||||
|
||||
|
|
Loading…
Reference in New Issue