From 3c0dca4ea5eb066d1ed222b1aa96db24d3538c9a Mon Sep 17 00:00:00 2001 From: Robert Varga Date: Mon, 15 Jan 2018 18:52:18 +0100 Subject: [PATCH] Remove MOXyJsonProvider from resources Fixes the following warning: 2018-01-15 18:50:26,021 | WARN | ender-2-thread-1 | ResourceConfig | 31 - com.sun.jersey.jersey-server - 1.17.0 | Class org.eclipse.persistence.jaxb.rs.MOXyJsonProvider is ignored as an instance is registered in the set of singletons Change-Id: I57ef62ba1578c9c4ae2dd2c213a91d47b5230a23 Signed-off-by: Robert Varga --- .../neutron/northbound/api/NeutronNorthboundRSApplication.java | 1 - 1 file changed, 1 deletion(-) diff --git a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronNorthboundRSApplication.java b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronNorthboundRSApplication.java index 821063b03..90e57edee 100644 --- a/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronNorthboundRSApplication.java +++ b/northbound-api/src/main/java/org/opendaylight/neutron/northbound/api/NeutronNorthboundRSApplication.java @@ -60,7 +60,6 @@ public final class NeutronNorthboundRSApplication extends Application { classes.add(NeutronTapServiceNorthbound.class); classes.add(NeutronTapFlowNorthbound.class); - classes.add(MOXyJsonProvider.class); return classes; } -- 2.36.6