Author: remm
Date: Wed Jan 25 09:04:15 2006
New Revision: 372275
URL: http://svn.apache.org/viewcvs?rev=372275&view=rev
Log:
- Get the read method rather than the write method here.
- Oh no, I've noticed there are tabs everywhere.
- Submitted by Jason Hookom.
Modified:
tomcat/jasper/tc6.0.x/src/share/javax/el/BeanELResolver.java
Modified: tomcat/jasper/tc6.0.x/src/share/javax/el/BeanELResolver.java
URL:
http://svn.apache.org/viewcvs/tomcat/jasper/tc6.0.x/src/share/javax/el/BeanELResolver.java?rev=372275&r1=372274&r2=372275&view=diff
==============================================================================
--- tomcat/jasper/tc6.0.x/src/share/javax/el/BeanELResolver.java (original)
+++ tomcat/jasper/tc6.0.x/src/share/javax/el/BeanELResolver.java Wed Jan 25
09:04:15 2006
@@ -236,7 +236,7 @@
public Method read(ELContext ctx) {
if (this.read == null) {
- this.read = getMethod(this.owner,
descriptor.getWriteMethod());
+ this.read = getMethod(this.owner,
descriptor.getReadMethod());
if (this.read == null) {
throw new
PropertyNotFoundException(message(ctx,
"propertyNotReadable",
new Object[] {
---------------------------------------------------------------------
To unsubscribe, e-mail: [EMAIL PROTECTED]
For additional commands, e-mail: [EMAIL PROTECTED]