New API for GNPy
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / SortPortsByName.java
index 642df21a07103f397bf825036de5986a13efcb27..a793e6d58439ade4920ee5de5294e6a29c64eed7 100644 (file)
@@ -16,10 +16,12 @@ import java.util.Comparator;
  * @author Martial Coulibaly ( martial.coulibaly@gfi.com ) on behalf of Orange
  *
  */
+@SuppressWarnings("serial")
+@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(
+    value = "SE_NO_SERIALVERSIONID",
+    justification = "https://github.com/rzwitserloot/lombok/wiki/WHY-NOT:-serialVersionUID")
 public class SortPortsByName implements Comparator<String>, Serializable {
 
-    private static final long serialVersionUID = 1L;
-
     @Override
     public int compare(String port1, String port2) {
         int num = extractInt(port1) - extractInt(port2);