Remove redundant calls to super().
This commit is contained in:
@@ -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();
|
|
||||||
}
|
}
|
||||||
|
|
||||||
/**
|
/**
|
||||||
|
|||||||
@@ -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.");
|
||||||
|
|||||||
Reference in New Issue
Block a user