You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by or...@apache.org on 2023/08/01 06:36:07 UTC

[camel] 01/02: (chores) camel-flatpack: fixed checkstyle issue

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

orpiske pushed a commit to branch camel-3.20.x
in repository https://gitbox.apache.org/repos/asf/camel.git

commit e51ee95b5a63d90514c774a3670ad055b9db1c78
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue Aug 1 08:24:30 2023 +0200

    (chores) camel-flatpack: fixed checkstyle issue
---
 .../src/main/java/org/apache/camel/component/flatpack/DataSetList.java  | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java b/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java
index 6834036317b..e77a797e13f 100644
--- a/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java
+++ b/components/camel-flatpack/src/main/java/org/apache/camel/component/flatpack/DataSetList.java
@@ -65,7 +65,7 @@ public class DataSetList extends AbstractList<Map<String, Object>> implements Da
         dataSet.goTop();
 
         return new Iterator<Map<String, Object>>() {
-            private int pos = 0;
+            private int pos;
 
             public boolean hasNext() {
                 return pos < size();