1
0
mirror of synced 2025-02-20 20:51:35 +01:00

Use full name instead of import

This commit is contained in:
McSpazzy 2020-10-02 17:15:24 +10:00
parent 618fa1f6e0
commit 67eb77dcb6

View File

@ -9,7 +9,6 @@ using System.Threading;
using System.Windows.Forms;
using Toolbox.Library.Forms;
using Toolbox.Library;
using Toolbox.Library.Security.Cryptography;
namespace Toolbox
{
@ -74,7 +73,7 @@ namespace Toolbox
else if (type == "SARC")
return NameHash(text);
else if (type == "MMH3")
return MurMurHash3.Hash(text);
return Toolbox.Library.Security.Cryptography.MurMurHash3.Hash(text);
return 0;
}