1 files changed, 2 insertions, 6 deletions
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)
|