Skip to content

Commit 8f32857

Browse files
committed
Fix style
1 parent a76124e commit 8f32857

File tree

1 file changed

+4
-1
lines changed

1 file changed

+4
-1
lines changed

spring-cloud-function-context/src/test/java/org/springframework/cloud/function/context/config/RoutingFunctionTests.java

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -379,11 +379,14 @@ protected static class EmptyConfiguration {
379379
@EnableAutoConfiguration
380380
@Configuration
381381
protected static class ConfigurationWithDefaultMessageRoutingHandler {
382+
/**
383+
*
384+
*/
382385
public boolean defaultHandlerInvoked;
383386
@Bean
384387
public DefaultMessageRoutingHandler defaultRoutingHandler() {
385388
return new DefaultMessageRoutingHandler() {
386-
@Override
389+
@Override
387390
public void accept(Message<?> message) {
388391
super.accept(message);
389392
defaultHandlerInvoked = true;

0 commit comments

Comments
 (0)