This is an automated email from the ASF dual-hosted git repository.
ggregory 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 97aaa10565 Javadoc
97aaa10565 is described below
commit 97aaa105650481f81310b180b1b99e0a4d190e1a
Author: Gary Gregory <[email protected]>
AuthorDate: Thu Dec 14 15:30:02 2023 -0500
Javadoc
---
.../main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java | 6 +++---
.../java/org/apache/logging/log4j/core/util/ExecutorServices.java | 2 +-
2 files changed, 4 insertions(+), 4 deletions(-)
diff --git
a/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java
b/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java
index 2c7c571fd6..7185bc7bc8 100644
---
a/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java
+++
b/log4j-core/src/main/java/org/apache/logging/log4j/core/impl/Log4jLogEvent.java
@@ -1108,13 +1108,13 @@ public class Log4jLogEvent implements LogEvent {
private final String loggerName;
// transient since 2.8
private final transient Message message;
- /** since 2.8 */
+ /** @since 2.8 */
private MarshalledObject<Message> marshalledMessage;
- /** since 2.8 */
+ /** @since 2.8 */
private String messageString;
private final long timeMillis;
- /** since 2.11 */
+ /** @since 2.11 */
private final int nanoOfMillisecond;
private final transient Throwable thrown;
diff --git
a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ExecutorServices.java
b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ExecutorServices.java
index a8a9af5ca1..06873c97b8 100644
---
a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ExecutorServices.java
+++
b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ExecutorServices.java
@@ -78,6 +78,6 @@ public class ExecutorServices {
return true;
}
- /** no-op method which can be invoked to ensure this class has been
initialized per jls-12.4.2. */
+ /** No-op method which can be invoked to ensure this class has been
initialized per jls-12.4.2. */
public static void ensureInitialized() {}
}