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 2019/07/28 08:09:01 UTC

[jmeter] branch master updated: Bug 63616: Java Doc - JMeterContext getThreadNum start at 0 and not 1

This is an automated email from the ASF dual-hosted git repository.

pmouawad pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/jmeter.git


The following commit(s) were added to refs/heads/master by this push:
     new cfcc5e1  Bug 63616: Java Doc - JMeterContext getThreadNum start at 0 and not 1
cfcc5e1 is described below

commit cfcc5e1d3548041b5dbf612b34b4650d3cbd82c0
Author: pmouawad <p....@ubik-ingenierie.com>
AuthorDate: Sun Jul 28 10:08:45 2019 +0200

    Bug 63616: Java Doc - JMeterContext getThreadNum start at 0 and not 1
    
    https://bz.apache.org/bugzilla/show_bug.cgi?id=63616
    This resolves Bug 63616
---
 src/core/org/apache/jmeter/threads/JMeterContext.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/core/org/apache/jmeter/threads/JMeterContext.java b/src/core/org/apache/jmeter/threads/JMeterContext.java
index 36a60c1..3bc45e3 100644
--- a/src/core/org/apache/jmeter/threads/JMeterContext.java
+++ b/src/core/org/apache/jmeter/threads/JMeterContext.java
@@ -143,7 +143,7 @@ public class JMeterContext {
     }
 
     /**
-     * @return the threadNum starting from one
+     * @return the threadNum starting from zero (0)
      */
     public int getThreadNum() {
         return threadNum;