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.git
The following commit(s) were added to refs/heads/main by this push: new 55f4dcb CAMEL-16853: Regen 55f4dcb is described below commit 55f4dcbba72c02212c367f7beb88ce2bb8af7752 Author: Claus Ibsen <claus.ib...@gmail.com> AuthorDate: Tue Aug 10 21:46:54 2021 +0200 CAMEL-16853: Regen --- .../java/org/apache/camel/component/xslt/XsltResultHandlerTest.java | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/core/camel-core/src/test/java/org/apache/camel/component/xslt/XsltResultHandlerTest.java b/core/camel-core/src/test/java/org/apache/camel/component/xslt/XsltResultHandlerTest.java index ae3efa4..2a9465a 100644 --- a/core/camel-core/src/test/java/org/apache/camel/component/xslt/XsltResultHandlerTest.java +++ b/core/camel-core/src/test/java/org/apache/camel/component/xslt/XsltResultHandlerTest.java @@ -51,11 +51,11 @@ public class XsltResultHandlerTest extends TestSupport { assertEquals(factory, endpoint.getXslt().getResultHandlerFactory()); } - protected RouteBuilder createRouteBuilder() throws Exception { return new RouteBuilder() { public void configure() throws Exception { - from("direct:start").to("xslt:org/apache/camel/component/xslt/example.xsl?output=bytes&resultHandlerFactory=#factory"); + from("direct:start") + .to("xslt:org/apache/camel/component/xslt/example.xsl?output=bytes&resultHandlerFactory=#factory"); } }; }