[LIB-10] SerialVersionUID for Serializable classes
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / compare / RoundComparators.java
index 12226a9..1508ee3 100644 (file)
@@ -16,7 +16,6 @@
 
 package org.hedgecode.snooker.compare;
 
-import java.io.Serializable;
 import java.util.Comparator;
 
 import org.hedgecode.snooker.api.Round;
@@ -43,7 +42,7 @@ public enum RoundComparators {
         return comparator;
     }
 
-    static class RoundComparator implements Comparator<Round>, Serializable {
+    static class RoundComparator implements Comparator<Round> {
 
         @Override
         public int compare(Round round1, Round round2) {
@@ -52,7 +51,7 @@ public enum RoundComparators {
 
     }
 
-    static class EventComparator implements Comparator<Round>, Serializable {
+    static class EventComparator implements Comparator<Round> {
 
         @Override
         public int compare(Round round1, Round round2) {