From 8aac2df744820304ee29354333661699e9695939 Mon Sep 17 00:00:00 2001 From: Marcus G K Williams Date: Tue, 2 May 2017 15:11:04 -0700 Subject: Remove commented methods/fields in APPC Taking a stab at removing numerous commented out methods and fields. Almost all of what is removed is commented code with no explanation. Change-Id: I61cb1d7100ae6c75f6d42f500ade0504c97b760c Signed-off-by: Marcus G K Williams --- .../appc/listener/AppcEventListenerActivator.java | 18 +----------------- 1 file changed, 1 insertion(+), 17 deletions(-) (limited to 'appc-event-listener/appc-event-listener-bundle') diff --git a/appc-event-listener/appc-event-listener-bundle/src/main/java/org/openecomp/appc/listener/AppcEventListenerActivator.java b/appc-event-listener/appc-event-listener-bundle/src/main/java/org/openecomp/appc/listener/AppcEventListenerActivator.java index 4c2e28196..b5f0af598 100644 --- a/appc-event-listener/appc-event-listener-bundle/src/main/java/org/openecomp/appc/listener/AppcEventListenerActivator.java +++ b/appc-event-listener/appc-event-listener-bundle/src/main/java/org/openecomp/appc/listener/AppcEventListenerActivator.java @@ -117,27 +117,11 @@ public class AppcEventListenerActivator implements BundleActivator { Properties props = configuration.getProperties(); Set listeners = new HashSet(); - - // Configure App-C Closed Loop Listener -/* ListenerProperties clProps = new ListenerProperties("appc.ClosedLoop", props); - clProps.setListenerClass(org.openecomp.appc.listener.CL.impl.ListenerImpl.class); - listeners.add(clProps);*/ // Configure App-C 1607 Closed Loop Listener ListenerProperties cl1607Props = new ListenerProperties("appc.ClosedLoop1607", props); cl1607Props.setListenerClass(org.openecomp.appc.listener.CL1607.impl.ListenerImpl.class); - listeners.add(cl1607Props); - - -/* ListenerProperties clLCMProps = new ListenerProperties("appc.LCM", props); - clLCMProps.setListenerClass(org.openecomp.appc.listener.LCM.impl.ListenerImpl.class); - listeners.add(clLCMProps);*/ - -/* - ListenerProperties clLCMProps1607 = new ListenerProperties("appc.LCM1607", props); - clLCMProps1607.setListenerClass(org.openecomp.appc.listener.LCM1607.impl.ListenerImpl.class); - listeners.add(clLCMProps1607); -*/ + listeners.add(cl1607Props); adapter = new ControllerImpl(listeners); if (ctx != null && registration == null) { -- cgit 1.2.3-korg