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)