* fix bugs

This commit is contained in:
Reinhard Pointner 2011-12-01 17:01:13 +00:00
parent fca37ba9a9
commit 9e942bc659
1 changed files with 2 additions and 2 deletions

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;