We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 86eb43f commit dc0bbc4Copy full SHA for dc0bbc4
spring-amqp/src/main/java/org/springframework/amqp/remoting/client/AmqpClientInterceptor.java
@@ -65,8 +65,8 @@ public Object invoke(MethodInvocation invocation) throws Throwable {
65
throw new RemoteProxyFailureException("No reply received from '" +
66
remoteInvocation.getMethodName() +
67
"' with arguments '" +
68
- Arrays.asList(remoteInvocation.getArguments()) +
69
- "' - perhaps a timeout in the template?", null); // NOSONAR (null)
+ Arrays.asList(remoteInvocation.getArguments()) + // NOSONAR (null)
+ "' - perhaps a timeout in the template?", null);
70
}
71
else if (!(rawResult instanceof RemoteInvocationResult)) {
72
throw new RemoteProxyFailureException("Expected a result of type "
0 commit comments