This is an automated email from the ASF dual-hosted git repository. rgoers pushed a commit to branch LoggerContextProperties in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
commit 9ae3c429db38ce7d3a154209d1937ab316c03247 Author: Michael Ernst <[email protected]> AuthorDate: Mon Apr 10 12:14:49 2023 -0700 Fix `SimpleDateFormat`-related JDK bug URL in `FastDateParser` javadoc (#1404) --- .../apache/logging/log4j/core/time/internal/format/FastDateParser.java | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/time/internal/format/FastDateParser.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/time/internal/format/FastDateParser.java index 6d5b76a919..18146cd3f8 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/time/internal/format/FastDateParser.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/time/internal/format/FastDateParser.java @@ -53,7 +53,7 @@ import java.util.regex.Pattern; * This class is especially useful in multi-threaded server environments. * <code>SimpleDateFormat</code> is not thread-safe in any JDK version, * nor will it be as Sun has closed the - * <a href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4228335">bug</a>/RFE. + * <a href="https://bugs.openjdk.org/browse/JDK-4228335">bug</a>/RFE. * </p> * * <p>Only parsing is supported by this class, but all patterns are compatible with
