diff --git a/DragonFruit.Common.Data/Extensions/HashExtensions.cs b/DragonFruit.Common.Data/Extensions/HashExtensions.cs deleted file mode 100644 index 3efb84a..0000000 --- a/DragonFruit.Common.Data/Extensions/HashExtensions.cs +++ /dev/null @@ -1,10 +0,0 @@ -// DragonFruit.Common Copyright 2020 DragonFruit Network -// Licensed under the MIT License. Please refer to the LICENSE file at the root of this project for details - -namespace DragonFruit.Common.Data.Extensions -{ - public static class HashExtensions - { - public static string ItemHashCode(this object data) => data == null ? "!" : data.GetHashCode().ToString(); - } -}