You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by mi...@apache.org on 2012/01/21 20:52:05 UTC

svn commit: r1234407 - in /jmeter/trunk/src: jorphan/org/apache/jorphan/math/StatCalculator.java protocol/http/org/apache/jmeter/protocol/http/control/HttpMirrorControl.java protocol/jdbc/org/apache/jmeter/protocol/jdbc/AbstractJDBCTestElement.java

Author: milamber
Date: Sat Jan 21 19:52:04 2012
New Revision: 1234407

URL: http://svn.apache.org/viewvc?rev=1234407&view=rev
Log:
Javadoc typo

Modified:
    jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java
    jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/HttpMirrorControl.java
    jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/AbstractJDBCTestElement.java

Modified: jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java?rev=1234407&r1=1234406&r2=1234407&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java Sat Jan 21 19:52:04 2012
@@ -253,7 +253,7 @@ public abstract class StatCalculator<T e
      * Add a single value (normally elapsed time)
      * 
      * @param val the value to add, which should correspond with a single sample
-     * @ss {@link #addValue(Number, long)}
+     * @see #addValue(Number, long)
      */
     public void addValue(T val) {
         addValue(val, 1L);

Modified: jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/HttpMirrorControl.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/HttpMirrorControl.java?rev=1234407&r1=1234406&r2=1234407&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/HttpMirrorControl.java (original)
+++ jmeter/trunk/src/protocol/http/org/apache/jmeter/protocol/http/control/HttpMirrorControl.java Sat Jan 21 19:52:04 2012
@@ -115,7 +115,7 @@ public class HttpMirrorControl extends A
     }
     
     /**
-     * @param maxPoolSize Max Queue size
+     * @param maxQueueSize Max Queue size
      */
     public void setMaxQueueSize(String maxQueueSize) {
         setProperty(MAX_QUEUE_SIZE, maxQueueSize);

Modified: jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/AbstractJDBCTestElement.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/AbstractJDBCTestElement.java?rev=1234407&r1=1234406&r2=1234407&view=diff
==============================================================================
--- jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/AbstractJDBCTestElement.java (original)
+++ jmeter/trunk/src/protocol/jdbc/org/apache/jmeter/protocol/jdbc/AbstractJDBCTestElement.java Sat Jan 21 19:52:04 2012
@@ -152,7 +152,7 @@ public abstract class AbstractJDBCTestEl
     /**
      * Execute the test element.
      * 
-     * @param res a {@link SampleResult} in case the test should sample; <code>null</code> if only execution is requested
+     * @param conn a {@link SampleResult} in case the test should sample; <code>null</code> if only execution is requested
      * @throws UnsupportedOperationException if the user provided incorrect query type 
      */
     protected byte[] execute(Connection conn) throws SQLException, UnsupportedEncodingException, IOException, UnsupportedOperationException {