[LIB-10] SerialVersionUID for Serializable classes
[snooker-score-api.git] / src / main / java / org / hedgecode / snooker / compare / RoundComparators.java
index 360a4bd..1508ee3 100644 (file)
@@ -1,5 +1,5 @@
 /*
- * Copyright (c) 2017-2019. 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.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) {