Skip to content

Commit dc0bbc4

Browse files
committedDec 1, 2017
More Sonar Polishing
False positive is not only false; it's reported on the wrong line.
1 parent 86eb43f commit dc0bbc4

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed
 

‎spring-amqp/src/main/java/org/springframework/amqp/remoting/client/AmqpClientInterceptor.java

+2-2
Original file line numberDiff line numberDiff line change
@@ -65,8 +65,8 @@ public Object invoke(MethodInvocation invocation) throws Throwable {
6565
throw new RemoteProxyFailureException("No reply received from '" +
6666
remoteInvocation.getMethodName() +
6767
"' with arguments '" +
68-
Arrays.asList(remoteInvocation.getArguments()) +
69-
"' - perhaps a timeout in the template?", null); // NOSONAR (null)
68+
Arrays.asList(remoteInvocation.getArguments()) + // NOSONAR (null)
69+
"' - perhaps a timeout in the template?", null);
7070
}
7171
else if (!(rawResult instanceof RemoteInvocationResult)) {
7272
throw new RemoteProxyFailureException("Expected a result of type "

0 commit comments

Comments
 (0)
Please sign in to comment.