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 2019/05/10 09:37:34 UTC

[camel] branch master updated (09c6e5e -> b23bb6e)

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

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


    from 09c6e5e  Fixed Typo about zipDeflater in Migration guide
     new 7584b969 Fixed CS for Camel-Docker
     new b23bb6e  Fixed CS for Camel-Drill

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:
 .../camel/component/docker/it/FakeDockerCmdExecFactory.java    | 10 +++++-----
 .../org/apache/camel/component/drill/util/StringUtils.java     |  4 ++--
 2 files changed, 7 insertions(+), 7 deletions(-)


[camel] 02/02: Fixed CS for Camel-Drill

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

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

commit b23bb6ea1a34300545ea9167e690b04bc7fb36b1
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri May 10 11:37:16 2019 +0200

    Fixed CS for Camel-Drill
---
 .../main/java/org/apache/camel/component/drill/util/StringUtils.java  | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-drill/src/main/java/org/apache/camel/component/drill/util/StringUtils.java b/components/camel-drill/src/main/java/org/apache/camel/component/drill/util/StringUtils.java
index f05e844..f7eaf41 100644
--- a/components/camel-drill/src/main/java/org/apache/camel/component/drill/util/StringUtils.java
+++ b/components/camel-drill/src/main/java/org/apache/camel/component/drill/util/StringUtils.java
@@ -16,7 +16,7 @@
  */
 package org.apache.camel.component.drill.util;
 
-public class StringUtils {
+public final class StringUtils {
 
     private StringUtils() {
     }
@@ -24,7 +24,7 @@ public class StringUtils {
     public static boolean isBlank(String str) {
         int strLen;
         if (str != null && (strLen = str.length()) != 0) {
-            for(int i = 0; i < strLen; ++i) {
+            for (int i = 0; i < strLen; ++i) {
                 if (!Character.isWhitespace(str.charAt(i))) {
                     return false;
                 }


[camel] 01/02: Fixed CS for Camel-Docker

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

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

commit 7584b969c6aa50f1218964ac9c79b7a71be03125
Author: Andrea Cosentino <an...@gmail.com>
AuthorDate: Fri May 10 11:33:56 2019 +0200

    Fixed CS for Camel-Docker
---
 .../camel/component/docker/it/FakeDockerCmdExecFactory.java    | 10 +++++-----
 1 file changed, 5 insertions(+), 5 deletions(-)

diff --git a/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java b/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java
index 42454d7..3892577 100644
--- a/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java
+++ b/components/camel-docker/src/test/java/org/apache/camel/component/docker/it/FakeDockerCmdExecFactory.java
@@ -452,8 +452,8 @@ public class FakeDockerCmdExecFactory implements DockerCmdExecFactory {
         // Noop
     }
 
-	@Override
-	public Exec pruneCmdExec() {
-		return null;
-	}
-}
\ No newline at end of file
+    @Override
+    public Exec pruneCmdExec() {
+        return null;
+    }
+}