Memory amount should be in long not int

This commit is contained in:
Laurent Clouet
2019-02-20 13:46:53 +01:00
parent 6d9ca8ef2c
commit 208f49ba1d
10 changed files with 25 additions and 25 deletions

View File

@@ -31,9 +31,9 @@ public abstract class OS {
public abstract CPU getCPU();
public abstract int getMemory();
public abstract long getMemory();
public abstract int getFreeMemory();
public abstract long getFreeMemory();
public abstract String getRenderBinaryPath();