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:12:07 UTC

svn commit: r1639463 - /jmeter/trunk/src/core/org/apache/jmeter/functions/AbstractFunction.java

Author: fschumacher
Date: Thu Nov 13 19:12:07 2014
New Revision: 1639463

URL: http://svn.apache.org/r1639463
Log:
Bug 57193: Place @see below the note and remove the break. If @see
 is above the note, the note will not be shown in javadocs. Removes a
broken "br" tag
Bugzilla Id: 57193

Modified:
    jmeter/trunk/src/core/org/apache/jmeter/functions/AbstractFunction.java

Modified: jmeter/trunk/src/core/org/apache/jmeter/functions/AbstractFunction.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/core/org/apache/jmeter/functions/AbstractFunction.java?rev=1639463&r1=1639462&r2=1639463&view=diff
==============================================================================
--- jmeter/trunk/src/core/org/apache/jmeter/functions/AbstractFunction.java (original)
+++ jmeter/trunk/src/core/org/apache/jmeter/functions/AbstractFunction.java Thu Nov 13 19:12:07 2014
@@ -51,12 +51,11 @@ public abstract class AbstractFunction i
         return execute(previousResult, currentSampler);
     }
 
-    /**
-     *
-     * @see Function#setParameters(Collection)
-     * <br/>
+    /** 
      * Note: This is always called even if no parameters are provided
      * (versions of JMeter after 2.3.1)
+     * 
+     * @see Function#setParameters(Collection)
      */
     @Override
     abstract public void setParameters(Collection<CompoundVariable> parameters) throws InvalidVariableException;