Small improvement

This commit is contained in:
M66B
2021-09-08 12:34:36 +02:00
parent 73566b6de2
commit a23497543a
3 changed files with 3 additions and 3 deletions

View File

@@ -1208,7 +1208,7 @@ public class Helper {
return humanReadableByteCount(bytes, true);
}
private static String humanReadableByteCount(long bytes, boolean si) {
static String humanReadableByteCount(long bytes, boolean si) {
int sign = (int) Math.signum(bytes);
bytes = Math.abs(bytes);