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("<font color="#009900"><body></font>"); out.println("<font color="#009900"><h3>Request Parameters Example</h3></font>"); out.println("<font color="#009900">Parameters in this request:<br></font>"); - + String firstName = request.getParameter("firstname"); String lastName = request.getParameter("lastname"); - + if (firstName != null || lastName != null) { out.println("<font color="#009900">First Name:</font>"); out.println("<font color="#009900"> = </font>" + HTMLFilter.filter(firstName) + "<font color="#009900"><br></font>"); --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@tomcat.apache.org For additional commands, e-mail: dev-h...@tomcat.apache.org