Refactoring

This commit is contained in:
M66B
2019-12-24 10:39:29 +01:00
parent 5f3361e52c
commit 7b4b7449c1
3 changed files with 3 additions and 3 deletions

View File

@@ -776,7 +776,7 @@ public class Log {
sb.append(String.format("Memory class: %d\r\n", am.getMemoryClass()));
sb.append(String.format("Storage space: %s\r\n",
Helper.humanReadableByteCount(Helper.getStorageSpace(), true)));
Helper.humanReadableByteCount(Helper.getAvailableStorageSpace(), true)));
Runtime rt = Runtime.getRuntime();
long hused = (rt.totalMemory() - rt.freeMemory()) / 1024L;