From 50d72892e98753fd012aff00c2d42979dce9653e Mon Sep 17 00:00:00 2001 From: liamfallon Date: Thu, 18 Jun 2020 13:49:01 +0100 Subject: Changes for checkstyle 8.32 Issue-ID: POLICY-2188 Change-Id: I00843c61a6567001fc35c3ebb77b6843a1eb7da2 Signed-off-by: liamfallon --- .../policy/common/endpoints/event/comm/bus/internal/BusPublisher.java | 4 ++-- .../org/onap/policy/common/endpoints/utils/DmaapPropertyUtils.java | 4 ++-- .../java/org/onap/policy/common/endpoints/utils/PropertyUtils.java | 2 +- 3 files changed, 5 insertions(+), 5 deletions(-) (limited to 'policy-endpoints/src/main/java') diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusPublisher.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusPublisher.java index 469794c7..c2b590a0 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusPublisher.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/event/comm/bus/internal/BusPublisher.java @@ -292,8 +292,8 @@ public interface BusPublisher { */ public DmaapDmePublisherWrapper(BusTopicParams busTopicParams) { - super(ProtocolTypeConstants.DME2, busTopicParams.getServers(),busTopicParams.getTopic(), - busTopicParams.getUserName(),busTopicParams.getPassword(),busTopicParams.isUseHttps()); + super(ProtocolTypeConstants.DME2, busTopicParams.getServers(), busTopicParams.getTopic(), + busTopicParams.getUserName(), busTopicParams.getPassword(), busTopicParams.isUseHttps()); String dme2RouteOffer = busTopicParams.isAdditionalPropsValid() ? busTopicParams.getAdditionalProps().get( diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/DmaapPropertyUtils.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/DmaapPropertyUtils.java index 7e0d3ff6..5cb220b2 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/DmaapPropertyUtils.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/DmaapPropertyUtils.java @@ -36,10 +36,10 @@ public class DmaapPropertyUtils { /** * Maps a topic property to a DME property. */ - private static final Map PROP_TO_DME; + private static final Map PROP_TO_DME; static { - Map map = new HashMap<>(); + Map map = new HashMap<>(); map.put(PolicyEndPointProperties.PROPERTY_DMAAP_DME2_ROUTE_OFFER_SUFFIX, PolicyEndPointProperties.DME2_ROUTE_OFFER_PROPERTY); diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/PropertyUtils.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/PropertyUtils.java index 265346c9..7f15502e 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/PropertyUtils.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/utils/PropertyUtils.java @@ -129,7 +129,7 @@ public class PropertyUtils { } @FunctionalInterface - public static interface TriConsumer { + public static interface TriConsumer { public void accept(A propName, B propValue, C exception); } } -- cgit 1.2.3-korg