From 340304a79ebff1ce1e45b404bb34f1224e318850 Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Fri, 15 Feb 2019 10:57:14 -0500 Subject: Remove erroneous comments Some comments still said that including the maven artifact, jersey-media-json-jackson, could override gson behavior, but that is no longer true. The comments have been removed. Change-Id: I9b6477b76f835b96c52ccb9777b80791fc6b1d77 Issue-ID: POLICY-1428 Signed-off-by: Jim Hahn --- .../policy/common/endpoints/http/client/internal/JerseyClient.java | 4 ---- .../common/endpoints/http/server/internal/JettyJerseyServer.java | 4 ---- 2 files changed, 8 deletions(-) diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/client/internal/JerseyClient.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/client/internal/JerseyClient.java index 01f9fbe3..ca0611cb 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/client/internal/JerseyClient.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/client/internal/JerseyClient.java @@ -47,10 +47,6 @@ import org.slf4j.LoggerFactory; /** * Http Client implementation using a Jersey Client. - * - *

Note: the serialization provider will be ignored if the maven artifact, - * jersey-media-json-jackson, is included, regardless of whether it's included - * directly or indirectly. */ public class JerseyClient implements HttpClient { diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyJerseyServer.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyJerseyServer.java index 22fc9ac3..b7bafe0d 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyJerseyServer.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyJerseyServer.java @@ -36,10 +36,6 @@ import org.slf4j.LoggerFactory; * {@link #addServletClass(String, String)} is used or * {@link #addServletPackage(String, String)} is used. Thus it's possible to have both the * server's class provider property and the server's package provider property populated. - * - *

Also note: the serialization provider will be ignored if the maven artifact, - * jersey-media-json-jackson, is included, regardless of whether it's included - * directly or indirectly. */ public class JettyJerseyServer extends JettyServletServer { -- cgit 1.2.3-korg