We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent cd2d77e commit 84eec92Copy full SHA for 84eec92
spring-kafka/src/main/java/org/springframework/kafka/listener/adapter/InvocationResult.java
@@ -57,8 +57,8 @@ public boolean isMessageReturnType() {
57
58
@Override
59
public String toString() {
60
- return "InvocationResult [result=" + this.result // NOSONAR false positive
61
- + ", sendTo=" + this.sendTo == null ? "null" : this.sendTo.getExpressionString()
+ return "InvocationResult [result=" + this.result
+ + ", sendTo=" + (this.sendTo == null ? "null" : this.sendTo.getExpressionString())
62
+ ", messageReturnType=" + this.messageReturnType + "]";
63
}
64
0 commit comments