[portal-commits] JBoss Portal SVN: r9173 - branches/presentation/presentation/src/main/org/jboss/portal/presentation/impl/model.

portal-commits at lists.jboss.org portal-commits at lists.jboss.org
Wed Nov 28 12:00:56 EST 2007


Author: julien at jboss.com
Date: 2007-11-28 12:00:56 -0500 (Wed, 28 Nov 2007)
New Revision: 9173

Modified:
   branches/presentation/presentation/src/main/org/jboss/portal/presentation/impl/model/UIContextImpl.java
Log:
make the map of loaded objects on the ui context private and final

Modified: branches/presentation/presentation/src/main/org/jboss/portal/presentation/impl/model/UIContextImpl.java
===================================================================
--- branches/presentation/presentation/src/main/org/jboss/portal/presentation/impl/model/UIContextImpl.java	2007-11-28 16:57:14 UTC (rev 9172)
+++ branches/presentation/presentation/src/main/org/jboss/portal/presentation/impl/model/UIContextImpl.java	2007-11-28 17:00:56 UTC (rev 9173)
@@ -44,7 +44,7 @@
 {
 
    /** . */
-   Map<String, UIObject> objects = new HashMap<String, UIObject>();
+   private final Map<String, UIObject> objects = new HashMap<String, UIObject>();
 
    /** . */
    protected final StructuralStateContext structuralStateContext;
@@ -82,7 +82,7 @@
    }
 
    /**
-    * 
+    *
     */
    public UIObject getObject(String id)
    {




More information about the portal-commits mailing list