From 318d4e3f9c068f83f14f49b58dee6c03bba93554 Mon Sep 17 00:00:00 2001 From: Yohan Avishke Date: Wed, 5 Feb 2020 12:06:52 +0530 Subject: [PATCH] Remove duplicate validation checks --- .../device/mgt/core/report/mgt/ReportManagementServiceImpl.java | 1 - 1 file changed, 1 deletion(-) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/report/mgt/ReportManagementServiceImpl.java b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/report/mgt/ReportManagementServiceImpl.java index c5e9aa3758..5d408447f5 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/report/mgt/ReportManagementServiceImpl.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.core/src/main/java/org/wso2/carbon/device/mgt/core/report/mgt/ReportManagementServiceImpl.java @@ -160,7 +160,6 @@ public class ReportManagementServiceImpl implements ReportManagementService { public PaginationResult getDevicesExpiredByOSVersion(PaginationRequest request) throws ReportManagementException, DeviceTypeNotFoundException { if (request == null || - StringUtils.isBlank(request.getDeviceType()) || StringUtils.isBlank(request.getDeviceType()) || !request.getProperties().containsKey(Constants.OS_BUILD_DATE) || (Long) request.getProperty(Constants.OS_BUILD_DATE) == 0) {