Author: chris.laprun(a)jboss.com
Date: 2009-07-21 17:34:46 -0400 (Tue, 21 Jul 2009)
New Revision: 13566
Modified:
branches/Enterprise_Portal_Platform_4_3/core-admin/src/main/org/jboss/portal/core/admin/ui/PortalObjectManagerBean.java
Log:
- JBPORTAL-2409: Properly use the correct constructors (somehow this didn't make it in
the last commit)
--This line, and those below, will be 5ignored--
M core-admin/src/main/org/jboss/portal/core/admin/ui/PortalObjectManagerBean.java
Modified:
branches/Enterprise_Portal_Platform_4_3/core-admin/src/main/org/jboss/portal/core/admin/ui/PortalObjectManagerBean.java
===================================================================
---
branches/Enterprise_Portal_Platform_4_3/core-admin/src/main/org/jboss/portal/core/admin/ui/PortalObjectManagerBean.java 2009-07-21
21:32:15 UTC (rev 13565)
+++
branches/Enterprise_Portal_Platform_4_3/core-admin/src/main/org/jboss/portal/core/admin/ui/PortalObjectManagerBean.java 2009-07-21
21:34:46 UTC (rev 13566)
@@ -674,10 +674,8 @@
}
//
- selectedProperties = new PropertiesBean(this);
- selectedProperties.setBeanContext(beanContext);
- controlProperties = new ControlPropertiesBean(this);
- controlProperties.setBeanContext(beanContext);
+ selectedProperties = new PropertiesBean(this, beanContext);
+ controlProperties = new ControlPropertiesBean(this, beanContext);
propertyAction = new PropertyAction(this);
propertyAction.setBeanContext(beanContext);
Show replies by date