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 2015/08/29 16:47:14 UTC

svn commit: r1700042 - /jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterThread.java

Author: sebb
Date: Sat Aug 29 14:47:13 2015
New Revision: 1700042

URL: http://svn.apache.org/r1700042
Log:
Comment was in the wrong place

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterThread.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterThread.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterThread.java?rev=1700042&r1=1700041&r2=1700042&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterThread.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterThread.java Sat Aug 29 14:47:13 2015
@@ -431,9 +431,8 @@ public class JMeterThread implements Run
 
                 // Perform the actual sample
                 currentSampler = sampler;
-                SampleResult result = sampler.sample(null);
+                SampleResult result = sampler.sample(null); // TODO: remove this useless Entry parameter
                 currentSampler = null;
-                // TODO: remove this useless Entry parameter
 
                 // If we got any results, then perform processing on the result
                 if (result != null) {