Remove applist from device status update

This commit is contained in:
manoj 2015-05-18 15:04:41 +05:30
parent 3da5169bbb
commit 145fe35c7e
2 changed files with 2 additions and 2 deletions

View File

@ -192,7 +192,7 @@ public class AndroidDeviceManager implements DeviceMgtService {
}
@Override
public boolean updateDeviceInfo(Device device, List<Application> applicationList) throws DeviceManagementException {
public boolean updateDeviceInfo(Device device) throws DeviceManagementException {
boolean status;
MobileDevice mobileDevice = MobileDeviceManagementUtil.convertToMobileDevice(device);
try {

View File

@ -97,7 +97,7 @@ public class WindowsDeviceManager implements DeviceMgtService {
}
@Override
public boolean updateDeviceInfo(Device device, List<Application> applicationList) throws DeviceManagementException {
public boolean updateDeviceInfo(Device device) throws DeviceManagementException {
return true;
}