Removed restriction annotation which is not needed with open JDK
This commit is contained in:
parent
b206f4458f
commit
72f2ee3e15
|
@ -379,12 +379,9 @@ public class SmartgearResourcesTest extends ContextTest {
|
|||
|
||||
OperatingSystemMXBean mxbean = ManagementFactory
|
||||
.getOperatingSystemMXBean();
|
||||
@SuppressWarnings("restriction")
|
||||
com.sun.management.OperatingSystemMXBean sunmxbean = (com.sun.management.OperatingSystemMXBean) mxbean;
|
||||
@SuppressWarnings("restriction")
|
||||
long freeMemory = sunmxbean.getFreePhysicalMemorySize() / 1048576; // in
|
||||
// MB
|
||||
@SuppressWarnings("restriction")
|
||||
long totalMemory = sunmxbean.getTotalPhysicalMemorySize() / 1048576; // in
|
||||
// MB
|
||||
|
||||
|
|
Loading…
Reference in New Issue