From 00ee06a5effdd1f9f76c2ac325ef8db83c348d12 Mon Sep 17 00:00:00 2001 From: Pahansith Date: Tue, 9 Apr 2024 11:14:50 +0530 Subject: [PATCH] Fix build failure --- .../api/mocks/DeviceManagementProviderServiceMock.java | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/components/mobile-plugins/android-plugin/io.entgra.device.mgt.plugins.mobile.android.api/src/test/java/io/entgra/device/mgt/plugins/mobile/android/api/mocks/DeviceManagementProviderServiceMock.java b/components/mobile-plugins/android-plugin/io.entgra.device.mgt.plugins.mobile.android.api/src/test/java/io/entgra/device/mgt/plugins/mobile/android/api/mocks/DeviceManagementProviderServiceMock.java index 858566d69..df3d03d95 100644 --- a/components/mobile-plugins/android-plugin/io.entgra.device.mgt.plugins.mobile.android.api/src/test/java/io/entgra/device/mgt/plugins/mobile/android/api/mocks/DeviceManagementProviderServiceMock.java +++ b/components/mobile-plugins/android-plugin/io.entgra.device.mgt.plugins.mobile.android.api/src/test/java/io/entgra/device/mgt/plugins/mobile/android/api/mocks/DeviceManagementProviderServiceMock.java @@ -909,4 +909,9 @@ public class DeviceManagementProviderServiceMock implements DeviceManagementProv public List getEnrolledDevicesPriorTo(Date date) throws DeviceManagementException { return null; } + + @Override + public void deleteDeviceDataByTenantDomain(String s) throws DeviceManagementException { + throw new UnsupportedOperationException("Not implemented"); + } }