From e60a1fbe3cc23a58d71f22ebbf165c2945533a85 Mon Sep 17 00:00:00 2001 From: Matt Nadareski Date: Wed, 12 Nov 2025 21:41:40 -0500 Subject: [PATCH] These can be static --- SabreTools.Hashing/HashWrapper.cs | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/SabreTools.Hashing/HashWrapper.cs b/SabreTools.Hashing/HashWrapper.cs index 78e8a5b..25b1121 100644 --- a/SabreTools.Hashing/HashWrapper.cs +++ b/SabreTools.Hashing/HashWrapper.cs @@ -347,7 +347,7 @@ namespace SabreTools.Hashing /// /// Crc to get the value from /// String representing the CRC, null on error - private string? GetCRCVariableLengthString(Crc cr) + private static string? GetCRCVariableLengthString(Crc cr) { // Ignore null values if (cr.Hash == null) @@ -364,7 +364,7 @@ namespace SabreTools.Hashing /// /// SpamSum to get the value from /// String representing the SpamSum, null on error - private string? GetSpamSumBase64String(SpamSum.SpamSum ss) + private static string? GetSpamSumBase64String(SpamSum.SpamSum ss) { // Ignore null values if (ss.Hash == null)