do not explicit serialVersionUID anymore
[transportpce.git] / pce / src / main / java / org / opendaylight / transportpce / pce / graph / PceGraphEdge.java
index 78861c5e74a6a9a3b5496deb954bdca330327697..87adfcce44cd35938c387521c183cb6a153d67d6 100644 (file)
@@ -10,9 +10,11 @@ package org.opendaylight.transportpce.pce.graph;
 import org.jgrapht.graph.DefaultWeightedEdge;
 import org.opendaylight.transportpce.pce.networkanalyzer.PceLink;
 
+@edu.umd.cs.findbugs.annotations.SuppressFBWarnings(
+    value = "SE_NO_SERIALVERSIONID",
+    justification = "https://github.com/rzwitserloot/lombok/wiki/WHY-NOT:-serialVersionUID")
 public class PceGraphEdge extends DefaultWeightedEdge {
 
-    private static final long serialVersionUID = 1L;
     private PceLink link;
 
     public PceGraphEdge(PceLink link) {