From 536bddf4428da4b5c004fb24488dfc037754acf0 Mon Sep 17 00:00:00 2001 From: Geoffroy Bonneville Date: Thu, 2 Nov 2017 18:50:59 +0100 Subject: [PATCH] Minor code cleanup --- ModernKeePassLib/Cryptography/KeyDerivation/Argon2Kdf.Core.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/ModernKeePassLib/Cryptography/KeyDerivation/Argon2Kdf.Core.cs b/ModernKeePassLib/Cryptography/KeyDerivation/Argon2Kdf.Core.cs index c4b6356..5163a0c 100644 --- a/ModernKeePassLib/Cryptography/KeyDerivation/Argon2Kdf.Core.cs +++ b/ModernKeePassLib/Cryptography/KeyDerivation/Argon2Kdf.Core.cs @@ -486,8 +486,8 @@ namespace ModernKeePassLib.Cryptography.KeyDerivation } } } - - private static void FillSegmentThr(object o) + + private static void FillSegmentThr(object o) { Argon2ThreadInfo ti = (o as Argon2ThreadInfo); if(ti == null) { Debug.Assert(false); return; }