[jboss-svn-commits] JBL Code SVN: r23947 - labs/jbossesb/workspace/skeagh/container/osgi/src/main/java/org/jboss/esb/osgi.

jboss-svn-commits at lists.jboss.org jboss-svn-commits at lists.jboss.org
Wed Nov 19 04:14:11 EST 2008


Author: beve
Date: 2008-11-19 04:14:11 -0500 (Wed, 19 Nov 2008)
New Revision: 23947

Modified:
   labs/jbossesb/workspace/skeagh/container/osgi/src/main/java/org/jboss/esb/osgi/EsbServiceDeploymentActivator.java
Log:
Minor clean up.


Modified: labs/jbossesb/workspace/skeagh/container/osgi/src/main/java/org/jboss/esb/osgi/EsbServiceDeploymentActivator.java
===================================================================
--- labs/jbossesb/workspace/skeagh/container/osgi/src/main/java/org/jboss/esb/osgi/EsbServiceDeploymentActivator.java	2008-11-19 07:49:10 UTC (rev 23946)
+++ labs/jbossesb/workspace/skeagh/container/osgi/src/main/java/org/jboss/esb/osgi/EsbServiceDeploymentActivator.java	2008-11-19 09:14:11 UTC (rev 23947)
@@ -26,7 +26,6 @@
 import org.osgi.framework.BundleEvent;
 import org.osgi.framework.BundleListener;
 import org.osgi.service.component.ComponentContext;
-import org.osgi.service.log.LogService;
 
 /**
  * EsbServiceDeploymentActivator is an OSGi Activator that takes care
@@ -48,20 +47,12 @@
     private DeploymentRegistry registry = new DeploymentRegistry();
 
     /**
-     * Log service.
-     */
-    private LogService  log;
-
-    /**
      * Activation method that will be called by the Service Component Runtime.
      * @param cc The ComponentContext.
      */
     public final void activate(final ComponentContext cc)
     {
-        System.out.println("activate...ContextClassLoader : " + Thread.currentThread().getContextClassLoader());
         this.bundleContext = cc.getBundleContext();
-        System.out.println("activate...bundleClassLoader : " + getClass().getClassLoader());
-        log.log(LogService.LOG_DEBUG, "activate....");
 
         bundleContext.addBundleListener(this);
 




More information about the jboss-svn-commits mailing list