You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by gn...@apache.org on 2020/08/19 17:20:22 UTC

[camel] branch master updated: Fix formatting

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

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


The following commit(s) were added to refs/heads/master by this push:
     new 8ec26b3  Fix formatting
8ec26b3 is described below

commit 8ec26b3346111e9ee6309a4f0ebb828c965aa624
Author: Guillaume Nodet <gn...@gmail.com>
AuthorDate: Wed Aug 19 19:19:45 2020 +0200

    Fix formatting
---
 .../org/apache/camel/component/box/api/BoxCollaborationsManager.java    | 2 +-
 .../org/apache/camel/component/box/BoxCollaborationsManagerTest.java    | 2 +-
 2 files changed, 2 insertions(+), 2 deletions(-)

diff --git a/components/camel-box/camel-box-api/src/main/java/org/apache/camel/component/box/api/BoxCollaborationsManager.java b/components/camel-box/camel-box-api/src/main/java/org/apache/camel/component/box/api/BoxCollaborationsManager.java
index f6bc027..5e537d6 100644
--- a/components/camel-box/camel-box-api/src/main/java/org/apache/camel/component/box/api/BoxCollaborationsManager.java
+++ b/components/camel-box/camel-box-api/src/main/java/org/apache/camel/component/box/api/BoxCollaborationsManager.java
@@ -91,7 +91,7 @@ public class BoxCollaborationsManager {
                 throw new IllegalArgumentException("Parameter 'collaborator' can not be null");
             }
             LOG.debug("Creating  collaborations for folder(id=" + folderId + ") with collaborator("
-                    + collaborator.getID() + ")");
+                      + collaborator.getID() + ")");
             if (role == null) {
                 throw new IllegalArgumentException("Parameter 'role' can not be null");
             }
diff --git a/components/camel-box/camel-box-component/src/test/java/org/apache/camel/component/box/BoxCollaborationsManagerTest.java b/components/camel-box/camel-box-component/src/test/java/org/apache/camel/component/box/BoxCollaborationsManagerTest.java
index 93739b8..2cbaa89 100644
--- a/components/camel-box/camel-box-component/src/test/java/org/apache/camel/component/box/BoxCollaborationsManagerTest.java
+++ b/components/camel-box/camel-box-component/src/test/java/org/apache/camel/component/box/BoxCollaborationsManagerTest.java
@@ -39,4 +39,4 @@ class BoxCollaborationsManagerTest {
         assertThrows(IllegalArgumentException.class,
                 () -> bcm.addFolderCollaboration("123", new BoxUser(null, "id"), null));
     }
-}
\ No newline at end of file
+}