From 5cbd34c654fbae2af1a10fd8b248149aaf4579ff Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sun, 22 Oct 2023 07:50:05 -0400 Subject: [PATCH] Format tweaks --- .../java/org/apache/commons/logging/impl/LogFactoryImpl.java | 4 ++-- 1 file changed, 2 insertions(+), 2 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 55d2ba6..fad95fe 100644 --- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -1001,7 +1001,7 @@ public class LogFactoryImpl extends LogFactory { // Ok, the lib is there but while trying to create a real underlying // logger something failed in the underlying lib; display info about // that if possible. - final InvocationTargetException ite = (InvocationTargetException)discoveryFlaw; + final InvocationTargetException ite = (InvocationTargetException) discoveryFlaw; final Throwable cause = ite.getTargetException(); if (cause != null) { logDiagnostic("... InvocationTargetException: " + @@ -1009,7 +1009,7 @@ public class LogFactoryImpl extends LogFactory { cause.getLocalizedMessage()); if (cause instanceof ExceptionInInitializerError) { - final ExceptionInInitializerError eiie = (ExceptionInInitializerError)cause; + final ExceptionInInitializerError eiie = (ExceptionInInitializerError) cause; final Throwable cause2 = eiie.getCause(); if (cause2 != null) { final StringWriter sw = new StringWriter();