diff --git a/pubnub/lib/src/core/crypto/cipher_key.dart b/pubnub/lib/src/core/crypto/cipher_key.dart index f5b44b15..9c50ad8b 100644 --- a/pubnub/lib/src/core/crypto/cipher_key.dart +++ b/pubnub/lib/src/core/crypto/cipher_key.dart @@ -24,9 +24,6 @@ class CipherKey { @override bool operator ==(Object other) { - if (other == null) { - return false; - } if (runtimeType == other.runtimeType) { return utf8.decode(data) == utf8.decode((other as CipherKey).data); }