Sonar Fixes

Final critical smells.
This commit is contained in:
Gary Russell
2018-12-20 10:02:19 -05:00
committed by Artem Bilan
parent 761af2730c
commit a01d09f0f1
9 changed files with 25 additions and 32 deletions

View File

@@ -208,7 +208,10 @@ public class RedisQueueInboundGateway extends MessagingGatewaySupport implements
if (value != null) {
if (!this.active) {
this.template.boundListOps(uuid).rightPush(value);
this.boundListOperations.rightPush(stringSerializer.serialize(uuid));
byte[] serialized = stringSerializer.serialize(uuid);
if (serialized != null) {
this.boundListOperations.rightPush(serialized);
}
return;
}
if (this.extractPayload) {