You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by pm...@apache.org on 2016/12/28 17:17:04 UTC

svn commit: r1776306 - /jmeter/trunk/src/components/org/apache/jmeter/modifiers/UserParameters.java

Author: pmouawad
Date: Wed Dec 28 17:17:04 2016
New Revision: 1776306

URL: http://svn.apache.org/viewvc?rev=1776306&view=rev
Log:
Fix doc

Modified:
    jmeter/trunk/src/components/org/apache/jmeter/modifiers/UserParameters.java

Modified: jmeter/trunk/src/components/org/apache/jmeter/modifiers/UserParameters.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/components/org/apache/jmeter/modifiers/UserParameters.java?rev=1776306&r1=1776305&r2=1776306&view=diff
==============================================================================
--- jmeter/trunk/src/components/org/apache/jmeter/modifiers/UserParameters.java (original)
+++ jmeter/trunk/src/components/org/apache/jmeter/modifiers/UserParameters.java Wed Dec 28 17:17:04 2016
@@ -44,13 +44,13 @@ public class UserParameters extends Abst
 
     public static final String PER_ITERATION = "UserParameters.per_iteration";// $NON-NLS-1$
 
-    /*
+    /**
      * Although the lock appears to be an instance lock, in fact the lock is
-     * shared between all threads in a thread group, but different thread groups
-     * have different locks - see the clone() method below
+     * shared between all threads see the clone() method below
      *
      * The lock ensures that all the variables are processed together, which is
      * important for functions such as __CSVRead and _StringFromFile.
+     * But it has a performance drawback.
      */
     private transient Object lock = new Object();