You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2014/11/13 20:22:01 UTC

svn commit: r1639474 - in /jmeter/trunk/src: core/org/apache/jmeter/control/ core/org/apache/jmeter/testelement/property/ core/org/apache/jmeter/threads/ jorphan/org/apache/jorphan/util/

Author: fschumacher
Date: Thu Nov 13 19:22:00 2014
New Revision: 1639474

URL: http://svn.apache.org/r1639474
Log:
Bug 57193: Replace a few more &, < and > with html escaped version for
 javadoc
Bugzilla Id: 57193

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/control/IfController.java
    jmeter/trunk/src/core/org/apache/jmeter/testelement/property/AbstractProperty.java
    jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContextService.java
    jmeter/trunk/src/jorphan/org/apache/jorphan/util/JOrphanUtils.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/control/IfController.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/control/IfController.java?rev=1639474&r1=1639473&r2=1639474&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/control/IfController.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/control/IfController.java Thu Nov 13 19:22:00 2014
@@ -44,7 +44,7 @@ import org.mozilla.javascript.Scriptable
  * Thread-Group (set to loop a number of times or indefinitely,
  *    ... Samplers ... (e.g. Counter )
  *    ... Other Controllers ....
- *    ... IfController ( condition set to something like - ${counter} &lt 10)
+ *    ... IfController ( condition set to something like - ${counter} &lt; 10)
  *       ... statements to perform if condition is true
  *       ...
  *    ... Other Controllers /Samplers }

Modified: jmeter/trunk/src/core/org/apache/jmeter/testelement/property/AbstractProperty.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/testelement/property/AbstractProperty.java?rev=1639474&r1=1639473&r2=1639474&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/testelement/property/AbstractProperty.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/testelement/property/AbstractProperty.java Thu Nov 13 19:22:00 2014
@@ -362,8 +362,8 @@ public abstract class AbstractProperty i
      * The object can be one of:
      * <ul>
      * <li>JMeterProperty - returned unchanged</li>
-     * <li>TestElement => TestElementProperty with the same name</li>
-     * <li>Map|Collection => Map|CollectionProperty with the name = item.hashCode</li>
+     * <li>TestElement =&gt; TestElementProperty with the same name</li>
+     * <li>Map|Collection =&gt; Map|CollectionProperty with the name = item.hashCode</li>
      * </ul>
      * @param item object to be turned into a propery
      * @return the JMeterProperty

Modified: jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContextService.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContextService.java?rev=1639474&r1=1639473&r2=1639474&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContextService.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/threads/JMeterContextService.java Thu Nov 13 19:22:00 2014
@@ -135,7 +135,7 @@ public final class JMeterContextService 
     }
 
     /**
-     * Get the total number of threads (>= active)
+     * Get the total number of threads (&gt;= active)
      * @return total thread count
      */
     public static synchronized int getTotalThreads() {

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/util/JOrphanUtils.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/util/JOrphanUtils.java?rev=1639474&r1=1639473&r2=1639474&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/util/JOrphanUtils.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/util/JOrphanUtils.java Thu Nov 13 19:22:00 2014
@@ -379,7 +379,7 @@ public final class JOrphanUtils {
      *
      * @param target array to scan
      * @param search array to search for
-     * @param offset starting offset (>=0)
+     * @param offset starting offset (&gt;=0)
      * @return true if the search array matches the target at the current offset
      */
     public static boolean startsWith(byte [] target, byte [] search, int offset){