[jboss-cvs] JBoss Profiler SVN: r548 - branches/JBossProfiler2/src/main/org/jboss/profiler/agent.

jboss-cvs-commits at lists.jboss.org jboss-cvs-commits at lists.jboss.org
Mon Jun 15 21:51:25 EDT 2009


Author: jesper.pedersen
Date: 2009-06-15 21:51:25 -0400 (Mon, 15 Jun 2009)
New Revision: 548

Modified:
   branches/JBossProfiler2/src/main/org/jboss/profiler/agent/Agent.java
Log:
[JBPROFILER-81] Excludes are ignored if excludeAll=true

Modified: branches/JBossProfiler2/src/main/org/jboss/profiler/agent/Agent.java
===================================================================
--- branches/JBossProfiler2/src/main/org/jboss/profiler/agent/Agent.java	2009-06-04 11:28:21 UTC (rev 547)
+++ branches/JBossProfiler2/src/main/org/jboss/profiler/agent/Agent.java	2009-06-16 01:51:25 UTC (rev 548)
@@ -543,11 +543,9 @@
       return false;
     }
 
-    if (!excludeAll) {
-      for (String cl : excludeList) {
-        if (className.startsWith(cl)) {
-          return false;
-        }
+    for (String cl : excludeList) {
+      if (className.startsWith(cl)) {
+        return false;
       }
     }
 




More information about the jboss-cvs-commits mailing list