fix setGuestInfo return type

This commit is contained in:
Doug MacEachern 2006-12-06 17:18:23 +00:00
parent 19565d776d
commit 7b7a9db050
1 changed files with 1 additions and 1 deletions

View File

@ -159,7 +159,7 @@ public class VM extends VMwareObject {
public native String getGuestInfo(String key)
throws VMwareException;
public native String setGuestInfo(String key, String value)
public native void setGuestInfo(String key, String value)
throws VMwareException;
public native int getProductInfo(int type)