You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@myfaces.apache.org by mm...@apache.org on 2005/09/05 13:00:34 UTC

svn commit: r278714 - /myfaces/impl/trunk/src/java/org/apache/myfaces/el/PropertyResolverImpl.java

Author: mmarinschek
Date: Mon Sep  5 04:00:25 2005
New Revision: 278714

URL: http://svn.apache.org/viewcvs?rev=278714&view=rev
Log:
fix MYFACES

Modified:
    myfaces/impl/trunk/src/java/org/apache/myfaces/el/PropertyResolverImpl.java

Modified: myfaces/impl/trunk/src/java/org/apache/myfaces/el/PropertyResolverImpl.java
URL: http://svn.apache.org/viewcvs/myfaces/impl/trunk/src/java/org/apache/myfaces/el/PropertyResolverImpl.java?rev=278714&r1=278713&r2=278714&view=diff
==============================================================================
--- myfaces/impl/trunk/src/java/org/apache/myfaces/el/PropertyResolverImpl.java (original)
+++ myfaces/impl/trunk/src/java/org/apache/myfaces/el/PropertyResolverImpl.java Mon Sep  5 04:00:25 2005
@@ -291,7 +291,6 @@
         }
         catch (Exception e)
         {
-            // Cannot determine type, return null per JSF spec
             return null;
         }
     }
@@ -331,8 +330,8 @@
         }
         catch (Exception e)
         {
-            // Cannot determine type, return null per JSF spec
-            return null;
+            throw new EvaluationException("Exception getting type of index " + index + " of bean "
+                + base != null ? base.getClass().getName() : "NULL", e);
         }
     }