Convert GetBytesReadable to protected internal

This commit is contained in:
Matt Nadareski
2025-02-14 21:32:57 -05:00
parent fb8312344b
commit 7542a79a58

View File

@@ -67,7 +67,7 @@ namespace SabreTools.Reports
/// <param name="input"></param>
/// <returns>Human-readable file size</returns>
/// <link>http://www.somacon.com/p576.php</link>
protected static string GetBytesReadable(long input)
protected internal static string GetBytesReadable(long input)
{
// Get absolute value
long absolute_i = (input < 0 ? -input : input);