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 8a7783f47928196c769bd4cfbfbda42154603b04
Author: Andrea Cosentino <[email protected]>
AuthorDate: Wed Nov 6 11:04:44 2019 +0100

    CAMEL-14143 - Fixed CS
---
 .../camel/component/slack/helper/SlackMessage.java     | 18 +++++++++++-------
 1 file changed, 11 insertions(+), 7 deletions(-)

diff --git 
a/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java
 
b/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java
index 46fcbd6..8d4f92a 100644
--- 
a/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java
+++ 
b/components/camel-slack/src/main/java/org/apache/camel/component/slack/helper/SlackMessage.java
@@ -53,14 +53,14 @@ public class SlackMessage {
     }
 
     public String getUser() {
-               return user;
-       }
+        return user;
+    }
 
-       public void setUser(String user) {
-               this.user = user;
-       }
+    public void setUser(String user) {
+        this.user = user;
+    }
 
-       public String getIconUrl() {
+    public String getIconUrl() {
         return iconUrl;
     }
 
@@ -231,18 +231,23 @@ public class SlackMessage {
             public String getTitle() {
                 return title;
             }
+
             public void setTitle(String title) {
                 this.title = title;
             }
+
             public String getValue() {
                 return value;
             }
+
             public void setValue(String value) {
                 this.value = value;
             }
+
             public Boolean isShortValue() {
                 return shortValue;
             }
+
             public void setShortValue(Boolean shortValue) {
                 this.shortValue = shortValue;
             }
@@ -250,4 +255,3 @@ public class SlackMessage {
     }
 
 }
-

Reply via email to