From e173fc5ab13b095d8f70fd8a8d4d063adeba6e6b Mon Sep 17 00:00:00 2001 From: Jim Hahn Date: Fri, 5 Jul 2019 10:52:20 -0400 Subject: Fix sonar issues in policy/endpoints Sonar fixes, other than code coverage. These changes are disruptive and will likely cause breakage in a number of policy repos. Renamed constants. Moved constants/factories from interfaces to classes. Change-Id: I182d50320aa6b53e383081af806c60dd2f806cbe Issue-ID: POLICY-1791 Signed-off-by: Jim Hahn --- .../onap/policy/common/endpoints/features/NetLoggerFeatureApi.java | 7 ------- 1 file changed, 7 deletions(-) (limited to 'policy-endpoints/src/main/java/org/onap/policy/common/endpoints/features/NetLoggerFeatureApi.java') diff --git a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/features/NetLoggerFeatureApi.java b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/features/NetLoggerFeatureApi.java index 4e7d4444..a99ecd26 100644 --- a/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/features/NetLoggerFeatureApi.java +++ b/policy-endpoints/src/main/java/org/onap/policy/common/endpoints/features/NetLoggerFeatureApi.java @@ -23,7 +23,6 @@ package org.onap.policy.common.endpoints.features; import org.onap.policy.common.endpoints.event.comm.Topic.CommInfrastructure; import org.onap.policy.common.endpoints.utils.NetLoggerUtil.EventType; import org.onap.policy.common.utils.services.OrderedService; -import org.onap.policy.common.utils.services.OrderedServiceImpl; import org.slf4j.Logger; /** @@ -31,12 +30,6 @@ import org.slf4j.Logger; */ public interface NetLoggerFeatureApi extends OrderedService { - /** - * Feature providers implementing this interface. - */ - OrderedServiceImpl providers = - new OrderedServiceImpl<>(NetLoggerFeatureApi.class); - /** * Intercepts a message before it is logged. * -- cgit 1.2.3-korg