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 2012/08/29 01:42:19 UTC

svn commit: r1378384 - /jmeter/trunk/src/protocol/java/org/apache/jmeter/protocol/java/sampler/JavaSampler.java

Author: sebb
Date: Tue Aug 28 23:42:18 2012
New Revision: 1378384

URL: http://svn.apache.org/viewvc?rev=1378384&view=rev
Log:
Group private static fields together
No code change

Modified:
    jmeter/trunk/src/protocol/java/org/apache/jmeter/protocol/java/sampler/JavaSampler.java

Modified: jmeter/trunk/src/protocol/java/org/apache/jmeter/protocol/java/sampler/JavaSampler.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/java/org/apache/jmeter/protocol/java/sampler/JavaSampler.java?rev=1378384&r1=1378383&r2=1378384&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/java/org/apache/jmeter/protocol/java/sampler/JavaSampler.java (original)
+++ jmeter/trunk/src/protocol/java/org/apache/jmeter/protocol/java/sampler/JavaSampler.java Tue Aug 28 23:42:18 2012
@@ -52,6 +52,12 @@ public class JavaSampler extends Abstrac
                     "org.apache.jmeter.config.gui.SimpleConfigGui"}));
 
     /**
+     * Set used to register instances which implement tearDownTest.
+     * This is used so that the JavaSamplerClient can be notified when the test ends.
+     */
+    private static final Set<JavaSampler> TEAR_DOWN_SET = new HashSet<JavaSampler>();
+
+    /**
      * Property key representing the classname of the JavaSamplerClient to user.
      */
     public static final String CLASSNAME = "classname";
@@ -87,12 +93,6 @@ public class JavaSampler extends Abstrac
     private transient JavaSamplerContext context = null;
 
     /**
-     * Set used to register instances which implement tearDownTest.
-     * This is used so that the JavaSamplerClient can be notified when the test ends.
-     */
-    private static final Set<JavaSampler> TEAR_DOWN_SET = new HashSet<JavaSampler>();
-
-    /**
      * Create a JavaSampler.
      */
     public JavaSampler() {