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 2017/01/30 17:54:50 UTC

[3/6] camel git commit: Fixed CS. This closes #1429

Fixed CS. This closes #1429


Project: http://git-wip-us.apache.org/repos/asf/camel/repo
Commit: http://git-wip-us.apache.org/repos/asf/camel/commit/9c6263d8
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/9c6263d8
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/9c6263d8

Branch: refs/heads/master
Commit: 9c6263d8a25a1e1ae2a3aa68f53f356534f098e3
Parents: 280aacb
Author: Claus Ibsen <da...@apache.org>
Authored: Mon Jan 30 18:49:09 2017 +0100
Committer: Claus Ibsen <da...@apache.org>
Committed: Mon Jan 30 18:49:09 2017 +0100

----------------------------------------------------------------------
 .../camel/spring/remoting/MyMultiArgumentServiceInterface.java     | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/9c6263d8/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/MyMultiArgumentServiceInterface.java
----------------------------------------------------------------------
diff --git a/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/MyMultiArgumentServiceInterface.java b/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/MyMultiArgumentServiceInterface.java
index 175b969..49b1129 100644
--- a/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/MyMultiArgumentServiceInterface.java
+++ b/components/camel-spring/src/test/java/org/apache/camel/spring/remoting/MyMultiArgumentServiceInterface.java
@@ -18,6 +18,6 @@ package org.apache.camel.spring.remoting;
 
 public interface MyMultiArgumentServiceInterface {
 
-    public void doSomething(String arg1, String arg2, Long arg3);
+    void doSomething(String arg1, String arg2, Long arg3);
 
 }