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

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


The following commit(s) were added to refs/heads/8.5.x by this push:
     new f1c6d66  Improve format of debugging message
f1c6d66 is described below

commit f1c6d66dc05b1295e4dc7feaaa572df33694ebba
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Mon Apr 6 17:12:14 2020 +0100

    Improve format of debugging message
---
 test/org/apache/tomcat/util/net/TestSsl.java | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/test/org/apache/tomcat/util/net/TestSsl.java 
b/test/org/apache/tomcat/util/net/TestSsl.java
index 4acbaec..f5ae28b 100644
--- a/test/org/apache/tomcat/util/net/TestSsl.java
+++ b/test/org/apache/tomcat/util/net/TestSsl.java
@@ -133,8 +133,8 @@ public class TestSsl extends TomcatBaseTest {
                         for (int i = 0; i < bytes.length; i++) {
                             int read = is.read();
                             if (bytes[i] != read) {
-                                System.err.print("Byte in position [" + i + "] 
had value [" + read +
-                                        "] rather than " + 
Byte.toString(bytes[i]));
+                                System.err.println("Byte in position [" + i + 
"] had value [" + read +
+                                        "] rather than [" + 
Byte.toString(bytes[i]) + "]");
                                 errorCount.incrementAndGet();
                                 break;
                             }


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

Reply via email to