[LIB-10] SerialVersionUID for Serializable classes
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / compare / MatchComparators.java
index b7439ac..6138f84 100644 (file)
@@ -16,7 +16,6 @@
 
 package org.hedgecode.snooker.compare;
 
-import java.io.Serializable;
 import java.util.Comparator;
 
 import org.hedgecode.snooker.api.Match;
@@ -43,7 +42,7 @@ public enum MatchComparators {
         return comparator;
     }
 
-    static class RoundNumberComparator implements Comparator<Match>, Serializable {
+    static class RoundNumberComparator implements Comparator<Match> {
 
         @Override
         public int compare(Match match1, Match match2) {
@@ -54,7 +53,7 @@ public enum MatchComparators {
 
     }
 
-    static class EventComparator implements Comparator<Match>, Serializable {
+    static class EventComparator implements Comparator<Match> {
 
         @Override
         public int compare(Match match1, Match match2) {