do not explicit serialVersionUID anymore
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / mapping / SortPort221ByName.java
index 6c31cec940e237442b4769255738d1e7bb092f6b..48de1f3c715e7996a6cb8fed16b20afb77e5aff0 100644 (file)
@@ -18,10 +18,11 @@ import org.opendaylight.yang.gen.v1.http.org.openroadm.device.rev181019.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 SortPort221ByName implements Comparator<Port>, Serializable {
 
-    private static final long serialVersionUID = 1L;
-
     @Override
     public int compare(Port port1, Port port2) {
         return extractInt(port1) - extractInt(port2);