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/10/08 05:30:28 UTC

[7/8] camel git commit: CAMEL-9191: Fixed example. Thanks to Tim for the patch.

CAMEL-9191: Fixed example. Thanks to Tim for the patch.


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

Branch: refs/heads/camel-2.16.x
Commit: 4a3c2d5ade1488f878e5c66daf8600a43888c93a
Parents: 9e7516e
Author: Claus Ibsen <da...@apache.org>
Authored: Wed Oct 7 07:17:46 2015 +0200
Committer: Willem Jiang <wi...@gmail.com>
Committed: Thu Oct 8 11:27:18 2015 +0800

----------------------------------------------------------------------
 .../main/java/org/apache/camel/example/server/ServerRoutes.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/camel/blob/4a3c2d5a/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java
----------------------------------------------------------------------
diff --git a/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java b/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java
index 71813f6..3d80456 100644
--- a/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java
+++ b/examples/camel-example-spring-jms/src/main/java/org/apache/camel/example/server/ServerRoutes.java
@@ -42,7 +42,7 @@ public class ServerRoutes extends RouteBuilder {
         //from("jms:queue:numbers").bean("multiplier", "multiply");
 
         // the same as above but expressed as a URI configuration
-        //from("jms:queue:numbers").to("bean:multiplier?methodName=multiply");
+        //from("jms:queue:numbers").to("bean:multiplier?method=multiply");
     }
 
 }