1
0

Remove redundant calls to super().

This commit is contained in:
Gary Gregory
2020-11-20 18:00:39 -05:00
parent 8b539bdf23
commit 896fbd2f56
2 changed files with 0 additions and 2 deletions

View File

@@ -33,7 +33,6 @@ public class LogConfigurationException extends RuntimeException {
* Construct a new exception with <code>null</code> as its detail message. * Construct a new exception with <code>null</code> as its detail message.
*/ */
public LogConfigurationException() { public LogConfigurationException() {
super();
} }
/** /**

View File

@@ -83,7 +83,6 @@ public class LogFactoryImpl extends LogFactory {
* Public no-arguments constructor required by the lookup mechanism. * Public no-arguments constructor required by the lookup mechanism.
*/ */
public LogFactoryImpl() { public LogFactoryImpl() {
super();
initDiagnostics(); // method on this object initDiagnostics(); // method on this object
if (isDiagnosticsEnabled()) { if (isDiagnosticsEnabled()) {
logDiagnostic("Instance created."); logDiagnostic("Instance created.");