You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by se...@apache.org on 2013/07/05 11:45:16 UTC

svn commit: r1499955 - /jmeter/trunk/src/core/org/apache/jmeter/gui/action/ActionRouter.java

Author: sebb
Date: Fri Jul  5 09:45:16 2013
New Revision: 1499955

URL: http://svn.apache.org/r1499955
Log:
Comments: remove duplicate/obsolete ones and clarify recent change

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/gui/action/ActionRouter.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/gui/action/ActionRouter.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/gui/action/ActionRouter.java?rev=1499955&r1=1499954&r2=1499955&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/gui/action/ActionRouter.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/gui/action/ActionRouter.java Fri Jul  5 09:45:16 2013
@@ -259,9 +259,8 @@ public final class ActionRouter implemen
                     // classNames - required parent class(es) or annotations
                     new Class[] {Class.forName("org.apache.jmeter.gui.action.Command") }, // $NON-NLS-1$
                     false, // innerClasses - should we include inner classes?
-                    // contains - classname should contain this string
-                    // This was added in r325814 as part of changes for the reporting tool
                     null, // contains - classname should contain this string
+                    // Ignore the classes which are specific to the reporting tool
                     "org.apache.jmeter.report.gui", // $NON-NLS-1$ // notContains - classname should not contain this string
                     false); // annotations - true if classnames are annotations
             commands = new HashMap<String, Set<Command>>(listClasses.size());