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 2016/11/27 18:36:45 UTC

svn commit: r1771625 - /jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java

Author: fschumacher
Date: Sun Nov 27 18:36:45 2016
New Revision: 1771625

URL: http://svn.apache.org/viewvc?rev=1771625&view=rev
Log:
Javadoc describe parameter newValue

Modified:
    jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.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=1771625&r1=1771624&r2=1771625&view=diff
==============================================================================
--- jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java (original)
+++ jmeter/trunk/src/jorphan/org/apache/jorphan/math/StatCalculator.java Sun Nov 27 18:36:45 2016
@@ -95,15 +95,15 @@ public abstract class StatCalculator<T e
 
     /**
      * Add to received bytes
-     * @param newValue 
+     * @param newValue number of newly received bytes
      */
     public void addBytes(long newValue) {
         bytes += newValue;
     }
-    
+
     /**
      * Add to sent bytes
-     * @param newValue
+     * @param newValue number of newly sent bytes
      */
     public void addSentBytes(long newValue) {
         sentBytes += newValue;