Migrate away from edu.umd.cs.findbugs.annotations.SuppressWarnings
[neutron.git] / northbound-api / src / main / java / org / opendaylight / neutron / northbound / api / NeutronBgpvpnRouterAssociationRequest.java
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;
     }