Sonar fixes
* exposing internal objects * boolean complexity * names, methods with _ * missing `default` in switch * lost stack trace * unnecessary null check before instanceof * unused parameter * Fix method name
This commit is contained in:
committed by
Artem Bilan
parent
9780a6c893
commit
ebbcb9df48
@@ -40,7 +40,7 @@ public class RedisQueueInboundGatewayParser extends AbstractInboundGatewayParser
|
||||
|
||||
@Override
|
||||
protected boolean isEligibleAttribute(String attributeName) {
|
||||
return !attributeName.equals("queue")
|
||||
return !attributeName.equals("queue") // NOSONAR boolean complexity
|
||||
&& !attributeName.equals("connection-factory")
|
||||
&& !attributeName.equals("serializer")
|
||||
&& !attributeName.equals("task-executor")
|
||||
|
||||
Reference in New Issue
Block a user