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:52 UTC

[5/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/b00278f2
Tree: http://git-wip-us.apache.org/repos/asf/camel/tree/b00278f2
Diff: http://git-wip-us.apache.org/repos/asf/camel/diff/b00278f2

Branch: refs/heads/camel-2.18.x
Commit: b00278f2f69ec339a2ceec72cdf5bf03d0d14ceb
Parents: 8f07298
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:50:47 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/b00278f2/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);
 
 }