Formatting fix

This commit is contained in:
Victor Hugo Pongolino
2024-06-27 17:25:10 -03:00
committed by GitHub
parent 27ca5c37fc
commit d417740d67

View File

@@ -196,8 +196,8 @@ The `MessageRoutingCallback` is a strategy to assist with determining the name o
----
public interface MessageRoutingCallback {
default String routingResult(Message<?> message) {
return (String) message.getHeaders().get(FunctionProperties.FUNCTION_DEFINITION);
}
return (String) message.getHeaders().get(FunctionProperties.FUNCTION_DEFINITION);
}
}
----