You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ac...@apache.org on 2022/05/13 11:11:34 UTC

[camel] branch main updated: Regen for commit f9670d47f7d5e4538470be7977756b36dd206ebc

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

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


The following commit(s) were added to refs/heads/main by this push:
     new a73a4e863e5 Regen for commit f9670d47f7d5e4538470be7977756b36dd206ebc
a73a4e863e5 is described below

commit a73a4e863e53fda0418d7e3b32ad63c117b7a88d
Author: davsclaus <da...@users.noreply.github.com>
AuthorDate: Fri May 13 11:05:16 2022 +0000

    Regen for commit f9670d47f7d5e4538470be7977756b36dd206ebc
    
    Signed-off-by: GitHub <no...@github.com>
---
 .../src/main/java/org/apache/camel/support/ExchangeHelper.java      | 4 ++--
 core/camel-util/src/main/java/org/apache/camel/util/IOHelper.java   | 6 ++----
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/core/camel-support/src/main/java/org/apache/camel/support/ExchangeHelper.java b/core/camel-support/src/main/java/org/apache/camel/support/ExchangeHelper.java
index 905ccbbd6b8..00f13cfe320 100644
--- a/core/camel-support/src/main/java/org/apache/camel/support/ExchangeHelper.java
+++ b/core/camel-support/src/main/java/org/apache/camel/support/ExchangeHelper.java
@@ -975,8 +975,8 @@ public final class ExchangeHelper {
     }
 
     /**
-     * Gets the charset if set as header or property {@link Exchange#CHARSET_NAME}. <b>Notice:</b> The lookup from
-     * the header has priority over the property.
+     * Gets the charset if set as header or property {@link Exchange#CHARSET_NAME}. <b>Notice:</b> The lookup from the
+     * header has priority over the property.
      *
      * @param  exchange   the exchange
      * @param  useDefault should we fallback and use JVM default charset if no property existed?
diff --git a/core/camel-util/src/main/java/org/apache/camel/util/IOHelper.java b/core/camel-util/src/main/java/org/apache/camel/util/IOHelper.java
index e5d5d2adb7f..f4de4d0e17b 100644
--- a/core/camel-util/src/main/java/org/apache/camel/util/IOHelper.java
+++ b/core/camel-util/src/main/java/org/apache/camel/util/IOHelper.java
@@ -636,8 +636,7 @@ public final class IOHelper {
          * @param in      file to read
          * @param charset character set to use
          */
-        public EncodingFileReader(FileInputStream in, String charset) throws
-                                                                      UnsupportedEncodingException {
+        public EncodingFileReader(FileInputStream in, String charset) throws UnsupportedEncodingException {
             super(in, charset);
             this.in = in;
         }
@@ -672,8 +671,7 @@ public final class IOHelper {
          * @param out     file to write
          * @param charset character set to use
          */
-        public EncodingFileWriter(FileOutputStream out, String charset) throws
-                                                                        UnsupportedEncodingException {
+        public EncodingFileWriter(FileOutputStream out, String charset) throws UnsupportedEncodingException {
             super(out, charset);
             this.out = out;
         }