This is an automated email from the ASF dual-hosted git repository. ggregory pushed a commit to branch master in repository https://gitbox.apache.org/repos/asf/commons-logging.git
commit c290185fc25a5de91eb191a37fa4fb889758fb12 Author: Gary Gregory <[email protected]> AuthorDate: Sun Jan 4 15:01:25 2026 -0500 Use a code comment, not Javadoc inside a method --- src/main/java/org/apache/commons/logging/LogFactory.java | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java b/src/main/java/org/apache/commons/logging/LogFactory.java index fee177a..41913b2 100644 --- a/src/main/java/org/apache/commons/logging/LogFactory.java +++ b/src/main/java/org/apache/commons/logging/LogFactory.java @@ -894,9 +894,9 @@ public abstract class LogFactory { factory = newFactory(FACTORY_DEFAULT, thisClassLoaderRef.get(), contextClassLoader); } if (factory != null) { - /** - * Always cache using context class loader. - */ + // + // Always cache using context class loader. + // cacheFactory(contextClassLoader, factory); if (props != null) { final Enumeration<?> names = props.propertyNames();
