You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by da...@apache.org on 2023/08/24 04:22:03 UTC

[camel] branch camel-3.x updated: Regen for commit d30d1485ea1af44f10a0b82062e2a3add122d173 (#11192)

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

davsclaus 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 46c9957ff47 Regen for commit d30d1485ea1af44f10a0b82062e2a3add122d173 (#11192)
46c9957ff47 is described below

commit 46c9957ff478ee1149bb19c9cd71b8db48108d86
Author: github-actions[bot] <41...@users.noreply.github.com>
AuthorDate: Thu Aug 24 06:21:58 2023 +0200

    Regen for commit d30d1485ea1af44f10a0b82062e2a3add122d173 (#11192)
    
    Signed-off-by: GitHub <no...@github.com>
    Co-authored-by: davsclaus <da...@users.noreply.github.com>
---
 .../main/java/org/apache/camel/component/dhis2/Dhis2Converters.java  | 2 +-
 .../src/test/java/org/apache/camel/component/dhis2/Dhis2PutIT.java   | 5 +++--
 2 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/components/camel-dhis2/camel-dhis2-component/src/main/java/org/apache/camel/component/dhis2/Dhis2Converters.java b/components/camel-dhis2/camel-dhis2-component/src/main/java/org/apache/camel/component/dhis2/Dhis2Converters.java
index e6a42b52047..e7ae5e6a455 100644
--- a/components/camel-dhis2/camel-dhis2-component/src/main/java/org/apache/camel/component/dhis2/Dhis2Converters.java
+++ b/components/camel-dhis2/camel-dhis2-component/src/main/java/org/apache/camel/component/dhis2/Dhis2Converters.java
@@ -38,4 +38,4 @@ public final class Dhis2Converters {
             return null;
         }
     }
-}
\ No newline at end of file
+}
diff --git a/components/camel-dhis2/camel-dhis2-component/src/test/java/org/apache/camel/component/dhis2/Dhis2PutIT.java b/components/camel-dhis2/camel-dhis2-component/src/test/java/org/apache/camel/component/dhis2/Dhis2PutIT.java
index 7383ef5a157..9b7faaa3f1a 100644
--- a/components/camel-dhis2/camel-dhis2-component/src/test/java/org/apache/camel/component/dhis2/Dhis2PutIT.java
+++ b/components/camel-dhis2/camel-dhis2-component/src/test/java/org/apache/camel/component/dhis2/Dhis2PutIT.java
@@ -63,8 +63,9 @@ public class Dhis2PutIT extends AbstractDhis2TestSupport {
         String name = RandomStringUtils.randomAlphabetic(8);
         final java.io.InputStream result = requestBodyAndHeaders(endpointUri,
                 new OrganisationUnit().withName(name).withShortName(name).withOpeningDate(new Date()), headers);
-        OrganisationUnit organisationUnit = Environment.DHIS2_CLIENT.get("organisationUnits/{id}", Environment.ORG_UNIT_ID_UNDER_TEST)
-                .transfer().returnAs(OrganisationUnit.class);
+        OrganisationUnit organisationUnit
+                = Environment.DHIS2_CLIENT.get("organisationUnits/{id}", Environment.ORG_UNIT_ID_UNDER_TEST)
+                        .transfer().returnAs(OrganisationUnit.class);
         assertEquals(name, organisationUnit.getName().get());
 
         assertNotNull(result, "resource result");