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:
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
Block a user