These can be static

This commit is contained in:
Matt Nadareski
2025-11-12 21:41:40 -05:00
parent 978a3847de
commit e60a1fbe3c

View File

@@ -347,7 +347,7 @@ namespace SabreTools.Hashing
/// </summary>
/// <param name="cr">Crc to get the value from</param>
/// <returns>String representing the CRC, null on error</returns>
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
/// </summary>
/// <param name="ss">SpamSum to get the value from</param>
/// <returns>String representing the SpamSum, null on error</returns>
private string? GetSpamSumBase64String(SpamSum.SpamSum ss)
private static string? GetSpamSumBase64String(SpamSum.SpamSum ss)
{
// Ignore null values
if (ss.Hash == null)