From 2397abaa6c06bfc58fbc7bfdc0e8e0df2b8a03b6 Mon Sep 17 00:00:00 2001 From: harshanl Date: Thu, 17 Dec 2015 10:33:29 +0530 Subject: [PATCH] Fixed NPE issue --- .../mgt/mobile/dao/util/MobileDeviceManagementDAOUtil.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/util/MobileDeviceManagementDAOUtil.java b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/util/MobileDeviceManagementDAOUtil.java index cfdc99363..0f72e82e9 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/util/MobileDeviceManagementDAOUtil.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.mobile.impl/src/main/java/org/wso2/carbon/device/mgt/mobile/dao/util/MobileDeviceManagementDAOUtil.java @@ -93,7 +93,7 @@ public class MobileDeviceManagementDAOUtil { public static void setupMobileDeviceManagementSchema(DataSource dataSource, String pluginType) throws MobileDeviceMgtPluginException { MobileDeviceManagementSchemaInitializer initializer = new MobileDeviceManagementSchemaInitializer(dataSource, pluginType); - log.info("Initializing mobile device management repository database schema for " + dataSource); + log.info("Initializing mobile device management repository database schema for : " + pluginType); try { initializer.createRegistryDatabase(); } catch (Exception e) {