You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rg...@apache.org on 2021/04/22 16:57:27 UTC

[logging-log4j2] branch module-compile-fails updated: Use correct separator for subclass name

This is an automated email from the ASF dual-hosted git repository.

rgoers pushed a commit to branch module-compile-fails
in repository https://gitbox.apache.org/repos/asf/logging-log4j2.git


The following commit(s) were added to refs/heads/module-compile-fails by this push:
     new bfa0e1a  Use correct separator for subclass name
bfa0e1a is described below

commit bfa0e1ac4340dc6767c681ed5bee4be414636ce1
Author: Ralph Goers <rg...@apache.org>
AuthorDate: Thu Apr 22 09:57:15 2021 -0700

    Use correct separator for subclass name
---
 log4j-core/src/main/java/module-info.java | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/log4j-core/src/main/java/module-info.java b/log4j-core/src/main/java/module-info.java
index a548d36..c863695 100644
--- a/log4j-core/src/main/java/module-info.java
+++ b/log4j-core/src/main/java/module-info.java
@@ -78,7 +78,7 @@ module org.apache.logging.log4j.core {
     requires transitive org.apache.commons.compress;
     requires transitive org.fusesource.jansi;
     uses org.apache.logging.log4j.core.util.ContextDataProvider;
-    provides org.apache.logging.log4j.message.ThreadDumpMessage$ThreadInfoFactory with org.apache.logging.log4j.core.message.ExtendedThreadInfoFactory;
+    provides org.apache.logging.log4j.message.ThreadDumpMessage.ThreadInfoFactory with org.apache.logging.log4j.core.message.ExtendedThreadInfoFactory;
     provides org.apache.logging.log4j.core.util.ContextDataProvider with org.apache.logging.log4j.core.impl.ThreadContextDataProvider;
     provides org.apache.logging.log4j.spi.Provider with org.apache.logging.log4j.core.impl.Log4jProvider;
     provides org.apache.logging.log4j.plugins.processor.PluginService with org.apache.logging.log4j.core.plugins.Log4jPlugins;