You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@stratos.apache.org by ud...@apache.org on 2015/03/25 16:52:21 UTC

stratos git commit: add properties to the default contructer too

Repository: stratos
Updated Branches:
  refs/heads/master 276f1f162 -> bc966bad5


add properties to the default contructer too


Project: http://git-wip-us.apache.org/repos/asf/stratos/repo
Commit: http://git-wip-us.apache.org/repos/asf/stratos/commit/bc966bad
Tree: http://git-wip-us.apache.org/repos/asf/stratos/tree/bc966bad
Diff: http://git-wip-us.apache.org/repos/asf/stratos/diff/bc966bad

Branch: refs/heads/master
Commit: bc966bad5dae45e9ff84dfe3afc6254088429913
Parents: 276f1f1
Author: Udara Liyanage <ud...@wso2.com>
Authored: Wed Mar 25 21:20:33 2015 +0530
Committer: Udara Liyanage <ud...@wso2.com>
Committed: Wed Mar 25 21:20:33 2015 +0530

----------------------------------------------------------------------
 .../java/org/apache/stratos/cloud/controller/domain/Cartridge.java  | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/stratos/blob/bc966bad/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/Cartridge.java
----------------------------------------------------------------------
diff --git a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/Cartridge.java b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/Cartridge.java
index 6a10475..c180382 100644
--- a/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/Cartridge.java
+++ b/components/org.apache.stratos.cloud.controller/src/main/java/org/apache/stratos/cloud/controller/domain/Cartridge.java
@@ -64,6 +64,7 @@ public class Cartridge implements Serializable{
     private IaasConfig[] iaasConfigs;
 
     public Cartridge(){
+        properties = new org.apache.stratos.common.Properties();
     	init();
     }