This commit is contained in:
Clebert Suconic 2020-06-09 20:24:52 -04:00
commit 5f60b29683
1 changed files with 3 additions and 3 deletions

View File

@ -501,10 +501,10 @@ public class SessionQueueQueryResponseMessage_V3 extends SessionQueueQueryRespon
return false;
} else if (!ringSize.equals(other.ringSize))
return false;
if (enabled == enabled) {
if (other.ringSize != null)
if (enabled == null) {
if (other.enabled != null)
return false;
} else if (!enabled.equals(other.ringSize))
} else if (!enabled.equals(other.enabled))
return false;
if (defaultConsumerWindowSize == null) {
if (other.defaultConsumerWindowSize != null)