summary refs log tree commit diff
path: root/crypto/src/crypto/modes/EcbBlockCipher.cs
diff options
context:
space:
mode:
Diffstat (limited to 'crypto/src/crypto/modes/EcbBlockCipher.cs')
-rw-r--r--crypto/src/crypto/modes/EcbBlockCipher.cs5
1 files changed, 1 insertions, 4 deletions
diff --git a/crypto/src/crypto/modes/EcbBlockCipher.cs b/crypto/src/crypto/modes/EcbBlockCipher.cs
index 96f9811dd..b41452622 100644
--- a/crypto/src/crypto/modes/EcbBlockCipher.cs
+++ b/crypto/src/crypto/modes/EcbBlockCipher.cs
@@ -17,10 +17,7 @@ namespace Org.BouncyCastle.Crypto.Modes
 
         public EcbBlockCipher(IBlockCipher cipher)
         {
-            if (cipher == null)
-                throw new ArgumentNullException(nameof(cipher));
-
-            m_cipher = cipher;
+            m_cipher = cipher ?? throw new ArgumentNullException(nameof(cipher));
         }
 
         public bool IsPartialBlockOkay => false;