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

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


The following commit(s) were added to refs/heads/master by this push:
     new 5544035  Fixed CS
5544035 is described below

commit 55440355c9c7f09c1629bc3e1324618281a2b083
Author: Claus Ibsen <claus.ib...@gmail.com>
AuthorDate: Fri Apr 9 12:19:41 2021 +0200

    Fixed CS
---
 core/camel-util/src/main/java/org/apache/camel/util/StringHelper.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git 
a/core/camel-util/src/main/java/org/apache/camel/util/StringHelper.java 
b/core/camel-util/src/main/java/org/apache/camel/util/StringHelper.java
index e55fb8b..313bb500 100644
--- a/core/camel-util/src/main/java/org/apache/camel/util/StringHelper.java
+++ b/core/camel-util/src/main/java/org/apache/camel/util/StringHelper.java
@@ -418,8 +418,8 @@ public final class StringHelper {
         final String text = value;
 
         return new Iterator<String>() {
-            int i = 0;
-            int pos = 0;
+            int i;
+            int pos;
 
             @Override
             public boolean hasNext() {

Reply via email to