nacho 01/05/03 17:57:11 Modified: src/share/org/apache/jasper/compiler GetPropertyGenerator.java Log: Another Occurence of JspRuntimeLibrary without package in code generator. Revision Changes Path 1.6 +7 -6 jakarta-tomcat/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java Index: GetPropertyGenerator.java =================================================================== RCS file: /home/cvs/jakarta-tomcat/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java,v retrieving revision 1.5 retrieving revision 1.6 diff -u -r1.5 -r1.6 --- GetPropertyGenerator.java 2001/04/28 21:13:36 1.5 +++ GetPropertyGenerator.java 2001/05/04 00:57:11 1.6 @@ -1,7 +1,7 @@ /* - * $Header: /home/cvs/jakarta-tomcat/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java,v 1.5 2001/04/28 21:13:36 costin Exp $ - * $Revision: 1.5 $ - * $Date: 2001/04/28 21:13:36 $ + * $Header: /home/cvs/jakarta-tomcat/src/share/org/apache/jasper/compiler/GetPropertyGenerator.java,v 1.6 2001/05/04 00:57:11 nacho Exp $ + * $Revision: 1.6 $ + * $Date: 2001/05/04 00:57:11 $ * * ==================================================================== * @@ -109,10 +109,11 @@ } else { // Get the class name and then introspect at runtime. writer.println("out.print(" + - Constants.JSP_RUNTIME_PACKAGE + - ".JspRuntimeLibrary.toString(JspRuntimeLibrary." + + Constants.JSP_RUNTIME_PACKAGE + ".JspRuntimeLibrary.toString(" + + Constants.JSP_RUNTIME_PACKAGE + ".JspRuntimeLibrary." + "handleGetProperty(pageContext.findAttribute(" + - "\"" + name + "\"), \"" + property + "\")));"); + "\"" + name + "\"), \"" + property + "\")));" + ); } }