Whitespace
authormarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 8 Mar 2010 20:59:18 +0000 (20:59 +0000)
committermarkt <markt@13f79535-47bb-0310-9956-ffa450edef68>
Mon, 8 Mar 2010 20:59:18 +0000 (20:59 +0000)
git-svn-id: https://svn.apache.org/repos/asf/tomcat/trunk@920506 13f79535-47bb-0310-9956-ffa450edef68

java/org/apache/jasper/compiler/Generator.java

index 238f793..9ae67d0 100644 (file)
@@ -1052,25 +1052,23 @@ class Generator {
                 java.lang.reflect.Method meth = JspRuntimeLibrary
                         .getReadMethod(bean, property);
                 String methodName = meth.getName();
-                out
-                        .printil("out.write(org.apache.jasper.runtime.JspRuntimeLibrary.toString("
-                                + "((("
-                                + beanName
-                                + ")_jspx_page_context.findAttribute("
-                                + "\""
-                                + name + "\"))." + methodName + "())));");
+                out.printil("out.write(org.apache.jasper.runtime.JspRuntimeLibrary.toString("
+                        + "((("
+                        + beanName
+                        + ")_jspx_page_context.findAttribute("
+                        + "\""
+                        + name + "\"))." + methodName + "())));");
             } else if (varInfoNames.contains(name)) {
                 // The object is a custom action with an associated
                 // VariableInfo entry for this name.
                 // Get the class name and then introspect at runtime.
-                out
-                        .printil("out.write(org.apache.jasper.runtime.JspRuntimeLibrary.toString"
-                                + "(org.apache.jasper.runtime.JspRuntimeLibrary.handleGetProperty"
-                                + "(_jspx_page_context.findAttribute(\""
-                                + name
-                                + "\"), \""
-                                + property
-                                + "\")));");
+                out.printil("out.write(org.apache.jasper.runtime.JspRuntimeLibrary.toString"
+                        + "(org.apache.jasper.runtime.JspRuntimeLibrary.handleGetProperty"
+                        + "(_jspx_page_context.findAttribute(\""
+                        + name
+                        + "\"), \""
+                        + property
+                        + "\")));");
             } else {
                 StringBuilder msg =
                     new StringBuilder("jsp:getProperty for bean with name '");