From f2732142225450d5196b31a01b2300c318eb9a02 Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Fri, 2 Oct 2020 17:45:57 +0200 Subject: [PATCH] Migrate away from edu.umd.cs.findbugs.annotations.SuppressWarnings This annotation is superseded by SuppressFBWarnings, migrate it. Change-Id: I657024a5e5d98ae4b1a2ea6256c171456b0bd16c Signed-off-by: Robert Varga --- .../api/NeutronBgpvpnNetworkAssociationRequest.java | 6 +++--- .../api/NeutronBgpvpnRouterAssociationRequest.java | 6 +++--- 2 files changed, 6 insertions(+), 6 deletions(-) diff --git a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnNetworkAssociationRequest.java b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnNetworkAssociationRequest.java index 1968f0b4f..03898e250 100644 --- a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnNetworkAssociationRequest.java +++ b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnNetworkAssociationRequest.java @@ -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 bulk) { this.bulkRequest = bulk; } diff --git a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnRouterAssociationRequest.java b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnRouterAssociationRequest.java index 42788742d..1fb2a5cbf 100644 --- a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnRouterAssociationRequest.java +++ b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronBgpvpnRouterAssociationRequest.java @@ -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 bulk) { bulkRequest = bulk; } -- 2.36.6