Author: nbelaevski
Date: 2011-02-28 12:58:27 -0500 (Mon, 28 Feb 2011)
New Revision: 21992
Modified:
branches/4.0.X/core/impl/src/main/java/org/richfaces/el/CapturingELResolver.java
Log:
https://issues.jboss.org/browse/RF-10637
Modified:
branches/4.0.X/core/impl/src/main/java/org/richfaces/el/CapturingELResolver.java
===================================================================
---
branches/4.0.X/core/impl/src/main/java/org/richfaces/el/CapturingELResolver.java 2011-02-28
15:51:43 UTC (rev 21991)
+++
branches/4.0.X/core/impl/src/main/java/org/richfaces/el/CapturingELResolver.java 2011-02-28
17:58:27 UTC (rev 21992)
@@ -38,7 +38,7 @@
@Override
public Object getValue(ELContext context, Object base, Object property) {
- if ((base != null) && (property != null)) {
+ if (property != null) {
this.base = base;
this.property = property;
}
@@ -48,7 +48,7 @@
@Override
public Class<?> getType(ELContext context, Object base, Object property) {
- if ((base != null) && (property != null)) {
+ if (property != null) {
this.base = base;
this.property = property;
}