do not explicit serialVersionUID anymore
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / mapping / SortPort121ByName.java
index fe7b917a2ddd5395f9a873011d452949174f31b8..1ac0c32878e423986be11fa5a5bb372b0aafb1a7 100644 (file)
@@ -9,7 +9,6 @@ package org.opendaylight.transportpce.common.mapping;
 
 import java.io.Serializable;
 import java.util.Comparator;
-
 import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.Port;
 
 
@@ -19,10 +18,11 @@ import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev170206.Port;
  * @author Martial Coulibaly (martial.coulibaly@gfi.com) on behalf of Orange
  *
  */
+@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(
+    value = "SE_NO_SERIALVERSIONID",
+    justification = "https://github.com/rzwitserloot/lombok/wiki/WHY-NOT:-serialVersionUID")
 public class SortPort121ByName implements Comparator<Port>, Serializable {
 
-    private static final long serialVersionUID = 1L;
-
     @Override
     public int compare(Port port1, Port port2) {
         return extractInt(port1) - extractInt(port2);