You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@camel.apache.org by ni...@apache.org on 2015/03/18 12:33:22 UTC

[3/3] camel git commit: Fixed the CS error of camel-core

Fixed the CS error of camel-core


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

Branch: refs/heads/master
Commit: 50954111924562c0bcf291008bdf3d1aad1e8e88
Parents: b3afcac
Author: Willem Jiang <wi...@gmail.com>
Authored: Wed Mar 18 19:26:59 2015 +0800
Committer: Willem Jiang <wi...@gmail.com>
Committed: Wed Mar 18 19:30:36 2015 +0800

----------------------------------------------------------------------
 .../apache/camel/impl/PojoProduceProxyInterceptEndpointTest.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/50954111/camel-core/src/test/java/org/apache/camel/impl/PojoProduceProxyInterceptEndpointTest.java
----------------------------------------------------------------------
diff --git a/camel-core/src/test/java/org/apache/camel/impl/PojoProduceProxyInterceptEndpointTest.java b/camel-core/src/test/java/org/apache/camel/impl/PojoProduceProxyInterceptEndpointTest.java
index f03ec9d..b9f24be 100644
--- a/camel-core/src/test/java/org/apache/camel/impl/PojoProduceProxyInterceptEndpointTest.java
+++ b/camel-core/src/test/java/org/apache/camel/impl/PojoProduceProxyInterceptEndpointTest.java
@@ -89,8 +89,8 @@ public class PojoProduceProxyInterceptEndpointTest extends TestCase {
         context.stop();
     }
 
-    public static interface EchoService {
-        public String echo(String word);
+    public interface EchoService {
+        String echo(String word);
     }
 
     public static class MyBean {