This is an automated email from the ASF dual-hosted git repository. acosentino pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/camel.git
commit 0ad4af6eef58adbfac276d5f4dc3420a6ec3fe09 Author: Andrea Cosentino <anco...@gmail.com> AuthorDate: Thu Aug 1 16:29:15 2019 +0200 CAMEL-13801 - Fixed CS for Camel-Stream --- .../camel/component/stream/StreamGroupLinesStrategyTest.java | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/components/camel-stream/src/test/java/org/apache/camel/component/stream/StreamGroupLinesStrategyTest.java b/components/camel-stream/src/test/java/org/apache/camel/component/stream/StreamGroupLinesStrategyTest.java index ed56044..3a88db7 100644 --- a/components/camel-stream/src/test/java/org/apache/camel/component/stream/StreamGroupLinesStrategyTest.java +++ b/components/camel-stream/src/test/java/org/apache/camel/component/stream/StreamGroupLinesStrategyTest.java @@ -25,10 +25,10 @@ import org.apache.camel.impl.JndiRegistry; import org.junit.Test; public class StreamGroupLinesStrategyTest extends StreamGroupLinesTest { - - @BindToRegistry("myGroupStrategy") - private MyGroupStrategy strat = new MyGroupStrategy(); - + + @BindToRegistry("myGroupStrategy") + private MyGroupStrategy strat = new MyGroupStrategy(); + class MyGroupStrategy implements GroupStrategy { @Override @@ -41,7 +41,7 @@ public class StreamGroupLinesStrategyTest extends StreamGroupLinesTest { return buffer.toString(); } } - + @Test public void testGroupLines() throws Exception { MockEndpoint mock = getMockEndpoint("mock:result");