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 2022/05/10 18:45:50 UTC

[tomcat] branch 8.5.x updated: This works on Linux and Windows

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 cdf358f066 This works on Linux and Windows
cdf358f066 is described below

commit cdf358f066600db892f97bc673cfa1f3a7ded5e2
Author: Mark Thomas <ma...@apache.org>
AuthorDate: Tue May 10 19:44:22 2022 +0100

    This works on Linux and Windows
---
 test/org/apache/tomcat/util/net/jsse/TestPEMFile.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/test/org/apache/tomcat/util/net/jsse/TestPEMFile.java b/test/org/apache/tomcat/util/net/jsse/TestPEMFile.java
index 5ff2ef358d..bfce46067b 100644
--- a/test/org/apache/tomcat/util/net/jsse/TestPEMFile.java
+++ b/test/org/apache/tomcat/util/net/jsse/TestPEMFile.java
@@ -79,7 +79,7 @@ public class TestPEMFile {
 
     private String getPath(String file) throws URISyntaxException, IOException {
         String packageName = this.getClass().getPackage().getName();
-        String path = packageName.replaceAll("\\.", File.separator);
+        String path = packageName.replace(".", File.separator);
         File f = new File("test" + File.separator + path + File.separator + file);
 
         return f.getCanonicalPath();


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