You are viewing a plain text version of this content. The canonical link for it is here.
Posted to dev@tomcat.apache.org by ma...@apache.org on 2020/07/09 18:33:04 UTC

[tomcat] branch master updated: Remove unnecessary spaces

This is an automated email from the ASF dual-hosted git repository.

markt pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/tomcat.git


The following commit(s) were added to refs/heads/master by this push:
     new 073675d  Remove unnecessary spaces
073675d is described below

commit 073675decb00c6789c05e36edf32ed286b8529d3
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Thu Jul 9 19:32:45 2020 +0100

    Remove unnecessary spaces
---
 webapps/examples/servlets/reqparams.html | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/webapps/examples/servlets/reqparams.html b/webapps/examples/servlets/reqparams.html
index 9cc8353..f20901b 100644
--- a/webapps/examples/servlets/reqparams.html
+++ b/webapps/examples/servlets/reqparams.html
@@ -44,10 +44,10 @@
         out.println(&quot;<font color="#009900">&lt;body&gt;</font>&quot;);
         out.println(&quot;<font color="#009900">&lt;h3&gt;Request Parameters Example&lt;/h3&gt;</font>&quot;);
         out.println(&quot;<font color="#009900">Parameters in this request:&lt;br&gt;</font>&quot;);
-        
+
         String firstName = request.getParameter("firstname");
         String lastName = request.getParameter("lastname");
-        
+
         if (firstName != null || lastName != null) {
             out.println(&quot;<font color="#009900">First Name:</font>&quot;);
             out.println(&quot;<font color="#009900"> = </font>&quot; + HTMLFilter.filter(firstName) + &quot;<font color="#009900">&lt;br&gt;</font>&quot;);


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