This is an automated email from the ASF dual-hosted git repository.
vy pushed a commit to branch 2.x
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git
The following commit(s) were added to refs/heads/2.x by this push:
new f4ae118c41 Fix `SimpleDateFormat`-related JDK bug URL in
`FastDateParser` javadoc (#1404)
f4ae118c41 is described below
commit f4ae118c41b77fdefcbec9cdbe88f17ab01b66f9
Author: Michael Ernst <[email protected]>
AuthorDate: Mon Apr 10 12:14:49 2023 -0700
Fix `SimpleDateFormat`-related JDK bug URL in `FastDateParser` javadoc
(#1404)
---
.../org/apache/logging/log4j/core/util/datetime/FastDateParser.java | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateParser.java
b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateParser.java
index 7646af26c9..c58603d8c0 100644
---
a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateParser.java
+++
b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/datetime/FastDateParser.java
@@ -58,7 +58,7 @@ import org.apache.logging.log4j.core.util.Integers;
* 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