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:42:20 UTC

[camel] branch camel-3.x updated: (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.x
in repository https://gitbox.apache.org/repos/asf/camel.git


The following commit(s) were added to refs/heads/camel-3.x by this push:
     new 2db75789439 (chores) camel-flatpack: fixed checkstyle issue
2db75789439 is described below

commit 2db7578943970c773934ee1bec772dbcd9a8fe75
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();