From be6b6039fa1562cced959cf7573c366ae480c138 Mon Sep 17 00:00:00 2001 From: mharindu Date: Wed, 9 Sep 2015 20:14:56 +0530 Subject: [PATCH] Removed unnecessary newlines --- .../device/mgt/mobile/impl/android/util/AndroidUtils.java | 4 +--- 1 file changed, 1 insertion(+), 3 deletions(-) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidUtils.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidUtils.java index d17768099..48753ed4c 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidUtils.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/impl/android/util/AndroidUtils.java @@ -26,8 +26,6 @@ import java.util.Map; public class AndroidUtils { public static String getDeviceProperty(Map deviceProperties, String property) { - - String deviceProperty = deviceProperties.get(property); - return deviceProperty; + return deviceProperties.get(property); } }