From: guillaume.lambert Date: Fri, 20 Aug 2021 15:46:41 +0000 (+0200) Subject: Ignore fallthrough warning after Phosphorus bump X-Git-Tag: 4.0.0~18^2 X-Git-Url: https://git.opendaylight.org/gerrit/gitweb?a=commitdiff_plain;h=549b7f0c321762c3cc633009ee32b93553f5c50e;p=transportpce.git Ignore fallthrough warning after Phosphorus bump JIRA: TRNSPRTPCE-435 Signed-off-by: guillaume.lambert Change-Id: I07ea123534c8cb369014dcabac335f774ba1f6a0 --- diff --git a/pce/src/main/java/org/opendaylight/transportpce/pce/graph/PostAlgoPathValidator.java b/pce/src/main/java/org/opendaylight/transportpce/pce/graph/PostAlgoPathValidator.java index 39e278e93..904f700fd 100644 --- a/pce/src/main/java/org/opendaylight/transportpce/pce/graph/PostAlgoPathValidator.java +++ b/pce/src/main/java/org/opendaylight/transportpce/pce/graph/PostAlgoPathValidator.java @@ -44,6 +44,7 @@ public class PostAlgoPathValidator { public static final Long CONST_OSNR = 1L; public static final double SYS_MARGIN = 0; + @SuppressWarnings("fallthrough") @SuppressFBWarnings( value = "SF_SWITCH_FALLTHROUGH", justification = "intentional fallthrough")