Remove erroneous comments 68/78568/1
authorJim Hahn <jrh3@att.com>
Fri, 15 Feb 2019 15:57:14 +0000 (10:57 -0500)
committerJim Hahn <jrh3@att.com>
Fri, 15 Feb 2019 15:57:14 +0000 (10:57 -0500)
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 <jrh3@att.com>
policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/client/internal/JerseyClient.java
policy-endpoints/src/main/java/org/onap/policy/common/endpoints/http/server/internal/JettyJerseyServer.java

index 01f9fbe..ca0611c 100644 (file)
@@ -47,10 +47,6 @@ import org.slf4j.LoggerFactory;
 
 /**
  * Http Client implementation using a Jersey Client.
- * 
- * <p>Note: the serialization provider will be ignored if the maven artifact,
- * <i>jersey-media-json-jackson</i>, is included, regardless of whether it's included
- * directly or indirectly.
  */
 public class JerseyClient implements HttpClient {
 
index 22fc9ac..b7bafe0 100644 (file)
@@ -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.
- * 
- * <p>Also note: the serialization provider will be ignored if the maven artifact,
- * <i>jersey-media-json-jackson</i>, is included, regardless of whether it's included
- * directly or indirectly.
  */
 public class JettyJerseyServer extends JettyServletServer {