[LIB-10] SerialVersionUID for Serializable classes
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / compare / MatchComparators.java
index 03c52f1..6138f84 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017. Developed by Hedgecode.
+ * Copyright (c) 2017-2020. Developed by Hedgecode.
  *
  * Licensed under the Apache License, Version 2.0 (the "License");
  * you may not use this file except in compliance with the License.
@@ -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) {