Skip to content

Commit e60a1fb

Browse files
committed
These can be static
1 parent 978a384 commit e60a1fb

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

SabreTools.Hashing/HashWrapper.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,7 @@ public void Terminate()
347347
/// </summary>
348348
/// <param name="cr">Crc to get the value from</param>
349349
/// <returns>String representing the CRC, null on error</returns>
350-
private string? GetCRCVariableLengthString(Crc cr)
350+
private static string? GetCRCVariableLengthString(Crc cr)
351351
{
352352
// Ignore null values
353353
if (cr.Hash == null)
@@ -364,7 +364,7 @@ public void Terminate()
364364
/// </summary>
365365
/// <param name="ss">SpamSum to get the value from</param>
366366
/// <returns>String representing the SpamSum, null on error</returns>
367-
private string? GetSpamSumBase64String(SpamSum.SpamSum ss)
367+
private static string? GetSpamSumBase64String(SpamSum.SpamSum ss)
368368
{
369369
// Ignore null values
370370
if (ss.Hash == null)

0 commit comments

Comments
 (0)