From f82c115316bcbf98fae46cb6fd90a8e5a57fdef2 Mon Sep 17 00:00:00 2001 From: Peter Dettman Date: Mon, 30 Jan 2023 18:54:08 +0700 Subject: Misc. cleanup after bc-fips-csharp updates --- crypto/src/util/Arrays.cs | 8 ++------ 1 file changed, 2 insertions(+), 6 deletions(-) (limited to 'crypto/src/util') diff --git a/crypto/src/util/Arrays.cs b/crypto/src/util/Arrays.cs index 41e3c3195..a9ae6724a 100644 --- a/crypto/src/util/Arrays.cs +++ b/crypto/src/util/Arrays.cs @@ -606,9 +606,7 @@ namespace Org.BouncyCastle.Utilities return false; } - public static void Fill( - byte[] buf, - byte b) + public static void Fill(byte[] buf, byte b) { int i = buf.Length; while (i > 0) @@ -618,9 +616,7 @@ namespace Org.BouncyCastle.Utilities } [CLSCompliant(false)] - public static void Fill( - ulong[] buf, - ulong b) + public static void Fill(ulong[] buf, ulong b) { int i = buf.Length; while (i > 0) -- cgit 1.4.1