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 2019/08/24 20:03:57 UTC

[jmeter] 03/03: Spacepolice

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

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

commit bcfc1f7e18474b74910cd7a3c836a792b657e9ba
Author: Felix Schumacher <fe...@internetallee.de>
AuthorDate: Sat Aug 24 22:00:32 2019 +0200

    Spacepolice
---
 .../src/main/java/org/apache/jmeter/functions/IterationCounter.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/src/functions/src/main/java/org/apache/jmeter/functions/IterationCounter.java b/src/functions/src/main/java/org/apache/jmeter/functions/IterationCounter.java
index 9134eec..cf8799b 100644
--- a/src/functions/src/main/java/org/apache/jmeter/functions/IterationCounter.java
+++ b/src/functions/src/main/java/org/apache/jmeter/functions/IterationCounter.java
@@ -62,7 +62,7 @@ public class IterationCounter extends AbstractFunction implements ThreadListener
         boolean perThread = Boolean.parseBoolean(((CompoundVariable) variables[0]).execute());
 
         String varName = ""; //$NON-NLS-1$
-        if (variables.length >=2) {// Ensure variable has been provided
+        if (variables.length >= 2) {// Ensure variable has been provided
             varName = ((CompoundVariable) variables[1]).execute().trim();
         }