kamnani commented on a change in pull request #351:
URL: https://github.com/apache/tomcat/pull/351#discussion_r483087177



##########
File path: java/org/apache/jasper/EmbeddedServletOptions.java
##########
@@ -84,6 +84,11 @@
      */
     private boolean classDebugInfo = true;
 
+    /**
+     * Do we want to Trim White Space in the in JSP Files?
+     */
+    private boolean JSPWhiteSpaceTrimming = false;

Review comment:
       trimSpaces will only touch the whitespaces. Examples: 
    Node text =
   1 )  "          " => ""
   2) \n\n\n => ""
   3) <title>\n\n\n\n => <title>\n\n\n\n (untouched)
   
   jspWhiteSpaceTrimming will touch all of the above and reduce all the excess 
whitespace the JSP page might have. 
   
   
   




----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.

For queries about this service, please contact Infrastructure at:
us...@infra.apache.org



---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org
For additional commands, e-mail: dev-h...@tomcat.apache.org

Reply via email to