This is an automated email from the ASF dual-hosted git repository. davsclaus pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/camel-kamelets-examples.git
The following commit(s) were added to refs/heads/main by this push: new 699086e Polished 699086e is described below commit 699086ed8f9a79c333deb839632e0c21a4871aaa Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Wed Mar 23 15:21:03 2022 +0100 Polished --- jbang/dependency-injection/Hello.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/jbang/dependency-injection/Hello.java b/jbang/dependency-injection/Hello.java index 77ecc62..8a7b9a3 100755 --- a/jbang/dependency-injection/Hello.java +++ b/jbang/dependency-injection/Hello.java @@ -11,7 +11,7 @@ public class Hello extends RouteBuilder { from("timer:java?period=1000") .routeId("java") .process(e -> { - e.getMessage().setBody("SpringBoot"); + e.getMessage().setBody("Jack"); }) .bean("myEcho", "echo") .bean("myLogger", "log(${body})");