Migrate away from edu.umd.cs.findbugs.annotations.SuppressWarnings 73/92873/1
authorRobert Varga <robert.varga@pantheon.tech>
Fri, 2 Oct 2020 15:45:57 +0000 (17:45 +0200)
committerRobert Varga <robert.varga@pantheon.tech>
Fri, 2 Oct 2020 15:45:57 +0000 (17:45 +0200)
This annotation is superseded by SuppressFBWarnings, migrate it.

Change-Id: I657024a5e5d98ae4b1a2ea6256c171456b0bd16c
Signed-off-by: Robert Varga <robert.varga@pantheon.tech>
northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnNetworkAssociationRequest.java
northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnRouterAssociationRequest.java

index 1968f0b4f665fcbcd7e22e9afb1cd4b7ac0577ef..03898e250b288f21b1f56e2461ef2932dd51ddb3 100644 (file)
@@ -5,9 +5,9 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.neutron.northbound.api;
 
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
@@ -28,12 +28,12 @@ public class NeutronBgpvpnNetworkAssociationRequest implements INeutronRequest<N
     NeutronBgpvpnNetworkAssociationRequest() {
     }
 
-    @edu.umd.cs.findbugs.annotations.SuppressWarnings("URF_UNREAD_FIELD")
+    @SuppressFBWarnings("URF_UNREAD_FIELD")
     NeutronBgpvpnNetworkAssociationRequest(NeutronBgpvpnNetworkAssociation bgpvpnNetworkAssociation) {
         this.singleton = bgpvpnNetworkAssociation;
     }
 
-    @edu.umd.cs.findbugs.annotations.SuppressWarnings("URF_UNREAD_FIELD")
+    @SuppressFBWarnings("URF_UNREAD_FIELD")
     NeutronBgpvpnNetworkAssociationRequest(List<NeutronBgpvpnNetworkAssociation> bulk) {
         this.bulkRequest = bulk;
     }
index 42788742d131b68f69f9a54d9bd826e3c646561c..1fb2a5cbff937ab11f69b8621f9a33b3239e7844 100644 (file)
@@ -5,9 +5,9 @@
  * terms of the Eclipse Public License v1.0 which accompanies this distribution,
  * and is available at http://www.eclipse.org/legal/epl-v10.html
  */
-
 package org.opendaylight.neutron.northbound.api;
 
+import edu.umd.cs.findbugs.annotations.SuppressFBWarnings;
 import java.util.List;
 import javax.xml.bind.annotation.XmlAccessType;
 import javax.xml.bind.annotation.XmlAccessorType;
@@ -28,12 +28,12 @@ public class NeutronBgpvpnRouterAssociationRequest implements INeutronRequest<Ne
     NeutronBgpvpnRouterAssociationRequest() {
     }
 
-    @edu.umd.cs.findbugs.annotations.SuppressWarnings("URF_UNREAD_FIELD")
+    @SuppressFBWarnings("URF_UNREAD_FIELD")
     NeutronBgpvpnRouterAssociationRequest(NeutronBgpvpnRouterAssociation bgpvpnRouterAssociation) {
         singleton = bgpvpnRouterAssociation;
     }
 
-    @edu.umd.cs.findbugs.annotations.SuppressWarnings("URF_UNREAD_FIELD")
+    @SuppressFBWarnings("URF_UNREAD_FIELD")
     NeutronBgpvpnRouterAssociationRequest(List<NeutronBgpvpnRouterAssociation> bulk) {
         bulkRequest = bulk;
     }