diff options
author | Seshu Kumar M <seshu.kumar.m@huawei.com> | 2018-09-06 08:03:35 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-09-06 08:03:35 +0000 |
commit | f5e8564b2a43f23cee008e0e89ea826a633706e4 (patch) | |
tree | c1ff2a17580a653b89a67fb590e99307db1b86de | |
parent | 6a190e8e520abfeee42e44709afaa40be41ee26d (diff) | |
parent | d156ce401d617668d81570bc787d90c124ebd530 (diff) |
Merge "Fixed sonar issue in Cloudify comp"
-rw-r--r-- | cloudify-client/src/main/java/org/onap/so/cloudify/connector/http/HttpClientConnector.java | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cloudify-client/src/main/java/org/onap/so/cloudify/connector/http/HttpClientConnector.java b/cloudify-client/src/main/java/org/onap/so/cloudify/connector/http/HttpClientConnector.java index a10945e855..6214cc5ef6 100644 --- a/cloudify-client/src/main/java/org/onap/so/cloudify/connector/http/HttpClientConnector.java +++ b/cloudify-client/src/main/java/org/onap/so/cloudify/connector/http/HttpClientConnector.java @@ -15,6 +15,7 @@ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. * See the License for the specific language governing permissions and * limitations under the License. + * Modifications Copyright (C) 2018 IBM. * ============LICENSE_END========================================================= */ @@ -64,8 +65,8 @@ import com.fasterxml.jackson.databind.SerializationFeature; public class HttpClientConnector implements CloudifyClientConnector { - public static ObjectMapper DEFAULT_MAPPER; - public static ObjectMapper WRAPPED_MAPPER; + private static ObjectMapper DEFAULT_MAPPER; + private static ObjectMapper WRAPPED_MAPPER; private static MsoLogger LOGGER = MsoLogger.getMsoLogger (MsoLogger.Catalog.RA, HttpClientConnector.class); |