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:15 UTC

[camel] branch camel-3.21.x updated (0895760e5f0 -> 58d0f134ca2)

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

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


    from 0895760e5f0 Update camel releases in catalog
     new b16237ca291 (chores) camel-flatpack: fixed checkstyle issue
     new 58d0f134ca2 (chores) camel-bindy: fixed checkstyle issue

The 2 revisions listed above as "new" are entirely new to this
repository and will be described in separate emails.  The revisions
listed as "add" were already present in the repository and have only
been added to this reference.


Summary of changes:
 .../bindy/csv/BindySimpleCsvUnmarshallTrimLineTest.java          | 9 ++-------
 .../java/org/apache/camel/component/flatpack/DataSetList.java    | 2 +-
 2 files changed, 3 insertions(+), 8 deletions(-)


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

Posted by or...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

commit 58d0f134ca2469de3e485092bea0e5b1c29b4f32
Author: Otavio Rodolfo Piske <an...@gmail.com>
AuthorDate: Tue Aug 1 08:27:37 2023 +0200

    (chores) camel-bindy: fixed checkstyle issue
---
 .../bindy/csv/BindySimpleCsvUnmarshallTrimLineTest.java          | 9 ++-------
 1 file changed, 2 insertions(+), 7 deletions(-)

diff --git a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindySimpleCsvUnmarshallTrimLineTest.java b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindySimpleCsvUnmarshallTrimLineTest.java
index c04ed6bfa98..8ef1f865e79 100644
--- a/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindySimpleCsvUnmarshallTrimLineTest.java
+++ b/components/camel-bindy/src/test/java/org/apache/camel/dataformat/bindy/csv/BindySimpleCsvUnmarshallTrimLineTest.java
@@ -16,24 +16,19 @@
  */
 package org.apache.camel.dataformat.bindy.csv;
 
+import java.util.List;
+
 import org.apache.camel.EndpointInject;
-import org.apache.camel.Exchange;
 import org.apache.camel.Produce;
 import org.apache.camel.ProducerTemplate;
 import org.apache.camel.builder.RouteBuilder;
 import org.apache.camel.component.mock.MockEndpoint;
-import org.apache.camel.dataformat.bindy.format.FormatException;
-import org.apache.camel.dataformat.bindy.model.simple.oneclass.Order;
 import org.apache.camel.test.spring.junit5.CamelSpringTest;
 import org.junit.jupiter.api.Test;
 import org.springframework.test.annotation.DirtiesContext;
 import org.springframework.test.context.ContextConfiguration;
 
-import java.util.List;
-
-import static org.apache.camel.test.junit5.TestSupport.assertIsInstanceOf;
 import static org.junit.jupiter.api.Assertions.assertEquals;
-import static org.junit.jupiter.api.Assertions.assertFalse;
 import static org.junit.jupiter.api.Assertions.assertNotNull;
 
 @ContextConfiguration


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

Posted by or...@apache.org.
This is an automated email from the ASF dual-hosted git repository.

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

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