Remove unused @SuppressFBWarnings 95/107795/2
authorRobert Varga <robert.varga@pantheon.tech>
Mon, 11 Sep 2023 16:21:57 +0000 (18:21 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Mon, 11 Sep 2023 16:26:41 +0000 (18:26 +0200)
This suppression is having no effect, remove it.

Change-Id: Idb7512357b78240d8f1bd88215479e55ace9cf50
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
bundles-test-lib/pom.xml
bundles-test-lib/src/main/java/org/opendaylight/odlparent/bundlestest/lib/TestBundleDiag.java

index 4062762f25d444ec16e7b553073d5adb6d78e10f..4b2225db79ec573ca45854878c7392bd71db86e8 100644 (file)
       <groupId>org.eclipse.jdt</groupId>
       <artifactId>org.eclipse.jdt.annotation</artifactId>
     </dependency>
-    <dependency>
-      <groupId>com.github.spotbugs</groupId>
-      <artifactId>spotbugs-annotations</artifactId>
-      <optional>true</optional>
-    </dependency>
   </dependencies>
 </project>
index 766c89a8154f27f1d3981f7aca22c789a3426d84..2b293bac5b34d8a1a39df802f0e87a049ab1ba75 100644 (file)
@@ -10,7 +10,6 @@ package org.opendaylight.odlparent.bundlestest.lib;
 import static java.util.concurrent.TimeUnit.MILLISECONDS;
 import static java.util.concurrent.TimeUnit.SECONDS;
 
-import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.util.concurrent.TimeUnit;
 import java.util.function.BiConsumer;
 import org.apache.karaf.bundle.core.BundleService;
@@ -28,8 +27,6 @@ import org.slf4j.LoggerFactory;
  *
  * @author Michael Vorburger.ch
  */
-@SuppressFBWarnings(value = "CRLF_INJECTION_LOGS",
-        justification = "multi-line logs are internal, without input from untrusted external source")
 public class TestBundleDiag {
     private static final Logger LOG = LoggerFactory.getLogger(TestBundleDiag.class);