Fix build failure due to duplicating methods

This commit is contained in:
Yohan Avishke 2020-01-29 11:12:25 +00:00 committed by Dharmakeerthi Lasantha
parent 9196c685f3
commit b11756f0a0

View File

@ -78,17 +78,6 @@ import java.util.List;
import java.util.Map; import java.util.Map;
public class DeviceManagementProviderServiceMock implements DeviceManagementProviderService { public class DeviceManagementProviderServiceMock implements DeviceManagementProviderService {
@Override
public boolean deleteDeviceTypeVersions(DeviceType deviceType)
throws DeviceManagementException {
return false;
}
@Override
public void disEnrollDevices(List<Device> list) throws DeviceManagementException {
}
@Override @Override
public List<Device> getAllDevices(String s) throws DeviceManagementException { public List<Device> getAllDevices(String s) throws DeviceManagementException {
return null; return null;
@ -697,10 +686,6 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv
} }
@Override public boolean deleteDeviceType(String s, DeviceType deviceType) throws DeviceManagementException {
return false;
}
@Override @Override
public boolean deleteDeviceType(String s, DeviceType deviceType) public boolean deleteDeviceType(String s, DeviceType deviceType)
throws DeviceManagementException { throws DeviceManagementException {