fix prototypes
This commit is contained in:
parent
ba91081747
commit
ef81794b50
|
@ -71,7 +71,7 @@ public class VM extends VMwareObject {
|
||||||
|
|
||||||
native void destroy();
|
native void destroy();
|
||||||
|
|
||||||
private static native void create();
|
private native void create();
|
||||||
|
|
||||||
private native void connect(ConnectParams params, String config, int mks)
|
private native void connect(ConnectParams params, String config, int mks)
|
||||||
throws VMwareException;
|
throws VMwareException;
|
||||||
|
|
|
@ -23,7 +23,7 @@ import java.util.List;
|
||||||
public class VMwareServer extends VMwareObject {
|
public class VMwareServer extends VMwareObject {
|
||||||
native void destroy();
|
native void destroy();
|
||||||
|
|
||||||
private native int create();
|
private native void create();
|
||||||
|
|
||||||
public native boolean connect(ConnectParams params)
|
public native boolean connect(ConnectParams params)
|
||||||
throws VMwareException;
|
throws VMwareException;
|
||||||
|
|
Loading…
Reference in New Issue