#114 Fixed checkstyle issue

This commit is contained in:
codinghog 2017-11-07 07:24:31 +01:00
parent 6e0bf59e5a
commit c45e9a1faf

View File

@ -32,6 +32,8 @@ public class AggregatorRoute extends RouteBuilder {
@Override
public void configure() throws Exception {
// Main route
from("{{entry}}").aggregate(constant(true), aggregator).completionSize(3).completionInterval(2000).to("{{endpoint}}");
from("{{entry}}").aggregate(constant(true), aggregator)
.completionSize(3).completionInterval(2000)
.to("{{endpoint}}");
}
}