do not explicit serialVersionUID anymore
[transportpce.git] / common / src / main / java / org / opendaylight / transportpce / common / mapping / SortPort121ByName.java
index 484053b2ccf1edf6e3dacbf0e7904cf87210d188..1ac0c32878e423986be11fa5a5bb372b0aafb1a7 100644 (file)
@@ -18,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);