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 d8e5e8069869ebe37ad969088d0ca9411d0ace11 Author: Gary Gregory <[email protected]> AuthorDate: Wed Mar 4 17:56:05 2026 -0500 Simplify --- src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java index 3594fe4..cda6c97 100644 --- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -653,8 +653,8 @@ public class LogFactoryImpl extends LogFactory { // UnifiedLoaderRepository) this can still work, so if user hasn't // forbidden it, just return the contextClassLoader. if (!allowFlawedContext) { - throw new LogConfigurationException("Bad class loader hierarchy; LogFactoryImpl was loaded via" + - " a class loader that is not related to the current context class loader."); + throw new LogConfigurationException( + "Bad class loader hierarchy; LogFactoryImpl was loaded via a class loader that is not related to the current context class loader."); } if (isDiagnosticsEnabled()) { logDiagnostic( @@ -672,8 +672,8 @@ public class LogFactoryImpl extends LogFactory { // custom class loaders but fail to set the context class loader so // we handle those flawed systems anyway. if (!allowFlawedContext) { - throw new LogConfigurationException("Bad class loader hierarchy; LogFactoryImpl was loaded via" + - " a class loader that is not related to the current context class loader."); + throw new LogConfigurationException( + "Bad class loader hierarchy; LogFactoryImpl was loaded via a class loader that is not related to the current context class loader."); } if (isDiagnosticsEnabled()) { logDiagnostic("Warning: the context class loader is an ancestor of the class loader that loaded LogFactoryImpl; it should be" +
