You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by re...@apache.org on 2006/01/25 18:04:17 UTC

svn commit: r372275 - /tomcat/jasper/tc6.0.x/src/share/javax/el/BeanELResolver.java

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: dev-unsubscribe@tomcat.apache.org
For additional commands, e-mail: dev-help@tomcat.apache.org