This is an automated email from the ASF dual-hosted git repository.
markt pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/tomcat.git
The following commit(s) were added to refs/heads/main by this push:
new e8621a0e7b Fix formatting imported values that have multiple lines
starting with \t
e8621a0e7b is described below
commit e8621a0e7be63ec2f6dfec9665e0587975541a61
Author: Mark Thomas <[email protected]>
AuthorDate: Wed Mar 1 16:58:15 2023 +0000
Fix formatting imported values that have multiple lines starting with \t
---
java/org/apache/tomcat/buildutil/translate/Utils.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/java/org/apache/tomcat/buildutil/translate/Utils.java
b/java/org/apache/tomcat/buildutil/translate/Utils.java
index c617c8d975..d7e73a7c56 100644
--- a/java/org/apache/tomcat/buildutil/translate/Utils.java
+++ b/java/org/apache/tomcat/buildutil/translate/Utils.java
@@ -34,7 +34,7 @@ import java.util.regex.Pattern;
public class Utils {
- private static final Pattern ESCAPE_LEADING_SPACE =
Pattern.compile("^(\\s)", Pattern.MULTILINE);
+ private static final Pattern ESCAPE_LEADING_SPACE = Pattern.compile("^(
)", Pattern.MULTILINE);
private static final Set<String> KEYS_WITH_UNNECESSARY_ESCAPING = new
HashSet<>();
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]