1
0

Simplify JUL support check

This commit is contained in:
Gary Gregory
2023-11-19 11:57:54 -05:00
parent daacf25020
commit ab86436dbb

View File

@@ -85,8 +85,7 @@ public class LogSource {
// Is JDK 1.4 Logging Available?
try {
jdk14IsAvailable = null != Class.forName("java.util.logging.Logger") &&
null != Class.forName("org.apache.commons.logging.impl.Jdk14Logger");
jdk14IsAvailable = null != Class.forName("org.apache.commons.logging.impl.Jdk14Logger");
} catch (final Throwable t) {
jdk14IsAvailable = false;
}