[seam-commits] Seam SVN: r10255 - trunk/src/main/org/jboss/seam/el.

seam-commits at lists.jboss.org seam-commits at lists.jboss.org
Tue Mar 31 15:55:45 EDT 2009


Author: dan.j.allen
Date: 2009-03-31 15:55:45 -0400 (Tue, 31 Mar 2009)
New Revision: 10255

Modified:
   trunk/src/main/org/jboss/seam/el/SeamELResolver.java
Log:
JBSEAM-3077


Modified: trunk/src/main/org/jboss/seam/el/SeamELResolver.java
===================================================================
--- trunk/src/main/org/jboss/seam/el/SeamELResolver.java	2009-03-31 18:24:32 UTC (rev 10254)
+++ trunk/src/main/org/jboss/seam/el/SeamELResolver.java	2009-03-31 19:55:45 UTC (rev 10255)
@@ -169,9 +169,8 @@
 
     private Object resolveInNamespace(ELContext context, Namespace namespace, Object property) {
         Object result = namespace.get((String) property);
-        if (result != null) {
-            context.setPropertyResolved(true);
-        }
+        // if the result is null, it means that there is no component instance bound to this qualified name
+        context.setPropertyResolved(true);
         return result;
     }
 




More information about the seam-commits mailing list