1
0
mirror of https://github.com/mitb-archive/filebot synced 2024-12-24 00:38:52 -05:00

* fix bugs

This commit is contained in:
Reinhard Pointner 2011-12-01 17:01:13 +00:00
parent fca37ba9a9
commit 9e942bc659

View File

@ -71,9 +71,9 @@ public final class EpisodeUtilities {
private <T> int compareValue(Comparable<T> o1, T o2) {
if (o1 == null && o1 == null)
if (o1 == null && o2 == null)
return 0;
if (o1 == null && o1 != null)
if (o1 == null && o2 != null)
return Integer.MAX_VALUE;
if (o1 != null && o2 == null)
return Integer.MIN_VALUE;