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 2018/10/25 08:46:25 UTC

[camel] 02/02: Fixed CS

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

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

commit a287357e2117528830bde1207fe15ad81bea6633
Author: Claus Ibsen <cl...@gmail.com>
AuthorDate: Thu Oct 25 10:44:54 2018 +0200

    Fixed CS
---
 camel-core/src/main/java/org/apache/camel/util/URISupport.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/camel-core/src/main/java/org/apache/camel/util/URISupport.java b/camel-core/src/main/java/org/apache/camel/util/URISupport.java
index 96f2cfa..1b13164 100644
--- a/camel-core/src/main/java/org/apache/camel/util/URISupport.java
+++ b/camel-core/src/main/java/org/apache/camel/util/URISupport.java
@@ -667,7 +667,7 @@ public final class URISupport {
         final StringBuilder joined = new StringBuilder();
 
         boolean addedLast = false;
-        for (int i = paths.length -1 ; i >= 0 ; i--) {
+        for (int i = paths.length - 1; i >= 0; i--) {
             String path = paths[i];
             if (ObjectHelper.isNotEmpty(path)) {
                 if (addedLast) {