From 6b33bec6e2bbe7ca8490c02446767ed37914824e Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 6 Nov 2024 15:23:01 -0500 Subject: [PATCH] Remove final this reference --- SabreTools.Hashing/HashWrapper.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/SabreTools.Hashing/HashWrapper.cs b/SabreTools.Hashing/HashWrapper.cs index e3a61fe..b4dd32b 100644 --- a/SabreTools.Hashing/HashWrapper.cs +++ b/SabreTools.Hashing/HashWrapper.cs @@ -94,7 +94,7 @@ namespace SabreTools.Hashing /// Hash type to instantiate public HashWrapper(HashType hashType) { - this.HashType = hashType; + HashType = hashType; GetHasher(); }