summary refs log tree commit diff
diff options
context:
space:
mode:
authorPeter Dettman <peter.dettman@bouncycastle.org>2022-11-06 13:45:44 +0700
committerPeter Dettman <peter.dettman@bouncycastle.org>2022-11-06 13:45:44 +0700
commitf54ff02c5fe5f97cf69323fde3849ed9706fcc9e (patch)
tree5679bbf4905b8bbe63b106befa3312b1f3e27765
parentRename HKDF files (diff)
downloadBouncyCastle.NET-ed25519-f54ff02c5fe5f97cf69323fde3849ed9706fcc9e.tar.xz
Mark class static
-rw-r--r--crypto/src/util/Arrays.cs2
1 files changed, 1 insertions, 1 deletions
diff --git a/crypto/src/util/Arrays.cs b/crypto/src/util/Arrays.cs
index 8b10ae6a3..bd2a4faea 100644
--- a/crypto/src/util/Arrays.cs
+++ b/crypto/src/util/Arrays.cs
@@ -6,7 +6,7 @@ using Org.BouncyCastle.Math;
 namespace Org.BouncyCastle.Utilities
 {
     /// <summary> General array utilities.</summary>
-    public abstract class Arrays
+    public static class Arrays
     {
         public static readonly byte[] EmptyBytes = new byte[0];
         public static readonly int[] EmptyInts = new int[0];