From 508082808c04078d5f96a6976897bd109e8ef928 Mon Sep 17 00:00:00 2001 From: milanperera Date: Thu, 30 Jul 2015 17:10:12 +0530 Subject: [PATCH] Fixed a bug in commons.licence --- .../org/wso2/carbon/device/mgt/common/license/mgt/License.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/license/mgt/License.java b/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/license/mgt/License.java index d41a64ab821..fb7d3a4fdf9 100644 --- a/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/license/mgt/License.java +++ b/components/device-mgt/org.wso2.carbon.device.mgt.common/src/main/java/org/wso2/carbon/device/mgt/common/license/mgt/License.java @@ -36,7 +36,7 @@ public class License { private String text; public License() { - this.validFrom = new Date(); + this.validTo = new Date(); this.validFrom = new Date(); }