use Sigar.load()
This commit is contained in:
parent
6764e30773
commit
3037ef8b00
|
@ -1,10 +1,15 @@
|
|||
package net.hyperic.sigar.win32;
|
||||
|
||||
import net.hyperic.sigar.Sigar;
|
||||
import net.hyperic.sigar.SigarException;
|
||||
|
||||
abstract class Win32Bindings {
|
||||
|
||||
static {
|
||||
new Sigar(); //XXX Sigar.load()
|
||||
try {
|
||||
Sigar.load();
|
||||
} catch (SigarException e) {
|
||||
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue