[jboss-cvs] JBossAS SVN: r88586 - branches/Branch_4_2/console/src/main/org/jboss/console/plugins.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Sun May 10 07:31:24 EDT 2009


Author: jesper.pedersen
Date: 2009-05-10 07:31:23 -0400 (Sun, 10 May 2009)
New Revision: 88586

Modified:
   branches/Branch_4_2/console/src/main/org/jboss/console/plugins/AOPLister.java
Log:
comment System.out statements

Modified: branches/Branch_4_2/console/src/main/org/jboss/console/plugins/AOPLister.java
===================================================================
--- branches/Branch_4_2/console/src/main/org/jboss/console/plugins/AOPLister.java	2009-05-10 05:59:46 UTC (rev 88585)
+++ branches/Branch_4_2/console/src/main/org/jboss/console/plugins/AOPLister.java	2009-05-10 11:31:23 UTC (rev 88586)
@@ -774,9 +774,9 @@
       {
          Map.Entry entry = (Map.Entry) it.next();
          String classname = (String) entry.getKey();
-         System.out.println("AOPLister found classname: "+classname);
+         //System.out.println("AOPLister found classname: "+classname);
          ClassAdvisor advisor = (ClassAdvisor) entry.getValue();
-         System.out.println("AOPLister found advisor: "+advisor);
+         //System.out.println("AOPLister found advisor: "+advisor);
          nodes.add(createTreeNode(
                  classname, // name
                  "Class " + classname, // description
@@ -805,7 +805,7 @@
    {
       try
       {
-         System.out.println("-> TCL: " + Thread.currentThread().getContextClassLoader());
+        //System.out.println("-> TCL: " + Thread.currentThread().getContextClassLoader());
          AspectManager tl = AspectManager.getTopLevelAspectManager();
 
          TreeNode[] unbounded = getUnboundBindings();
@@ -903,7 +903,7 @@
                      int advisorCount = 0;
                      while (true)
                      {
-                        System.out.println("AOPLISTER CL: "+this.getClass().getClassLoader());
+                       //System.out.println("AOPLISTER CL: "+this.getClass().getClassLoader());
                         //int count = AspectManager.instance().getAdvisors().size();
                         int count = AspectManager.getTopLevelAspectManager().getAdvisors().size();
                         




More information about the jboss-cvs-commits mailing list