mirror of
https://github.com/claunia/SabreTools.git
synced 2025-12-16 19:14:27 +00:00
Convert GetBytesReadable to protected internal
This commit is contained in:
@@ -67,7 +67,7 @@ namespace SabreTools.Reports
|
|||||||
/// <param name="input"></param>
|
/// <param name="input"></param>
|
||||||
/// <returns>Human-readable file size</returns>
|
/// <returns>Human-readable file size</returns>
|
||||||
/// <link>http://www.somacon.com/p576.php</link>
|
/// <link>http://www.somacon.com/p576.php</link>
|
||||||
protected static string GetBytesReadable(long input)
|
protected internal static string GetBytesReadable(long input)
|
||||||
{
|
{
|
||||||
// Get absolute value
|
// Get absolute value
|
||||||
long absolute_i = (input < 0 ? -input : input);
|
long absolute_i = (input < 0 ? -input : input);
|
||||||
|
|||||||
Reference in New Issue
Block a user