1
0

Remove unused parameter from private method

This commit is contained in:
Gary Gregory
2023-10-22 07:50:59 -04:00
parent 5cbd34c654
commit cdb9ef5ce4

View File

@@ -457,7 +457,7 @@ public class LogFactoryImpl extends LogFactory {
// handleFlawedDiscovery will determine whether this is a fatal // handleFlawedDiscovery will determine whether this is a fatal
// problem or not. If it is fatal, then a LogConfigurationException // problem or not. If it is fatal, then a LogConfigurationException
// will be thrown. // will be thrown.
handleFlawedDiscovery(logAdapterClassName, currentCL, t); handleFlawedDiscovery(logAdapterClassName, t);
} }
if (currentCL == null) { if (currentCL == null) {
@@ -979,16 +979,11 @@ public class LogFactoryImpl extends LogFactory {
* *
* @param logAdapterClassName is the class name of the Log implementation * @param logAdapterClassName is the class name of the Log implementation
* that could not be instantiated. Cannot be {@code null}. * that could not be instantiated. Cannot be {@code null}.
*
* @param classLoader is the classloader that we were trying to load the
* logAdapterClassName from when the exception occurred.
*
* @param discoveryFlaw is the Throwable created by the classloader * @param discoveryFlaw is the Throwable created by the classloader
* *
* @throws LogConfigurationException ALWAYS * @throws LogConfigurationException ALWAYS
*/ */
private void handleFlawedDiscovery(final String logAdapterClassName, private void handleFlawedDiscovery(final String logAdapterClassName,
final ClassLoader classLoader, // USED?
final Throwable discoveryFlaw) { final Throwable discoveryFlaw) {
if (isDiagnosticsEnabled()) { if (isDiagnosticsEnabled()) {