1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-11-04 08:25:03 -05:00

what the fuck was i smoking when i fucked that one up...

This commit is contained in:
Reinhard Pointner 2011-11-29 02:16:49 +00:00
parent c22d867453
commit 6f1780b1be

View File

@ -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;
}