You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2020/11/20 23:00:43 UTC

[commons-logging] branch master updated: Remove redundant calls to super().

This is an automated email from the ASF dual-hosted git repository.

ggregory pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/commons-logging.git


The following commit(s) were added to refs/heads/master by this push:
     new 896fbd2  Remove redundant calls to super().
896fbd2 is described below

commit 896fbd2f56d75875317145102949c0d5dc8fac3e
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Fri Nov 20 18:00:39 2020 -0500

    Remove redundant calls to super().
---
 src/main/java/org/apache/commons/logging/LogConfigurationException.java | 1 -
 src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java       | 1 -
 2 files changed, 2 deletions(-)

diff --git a/src/main/java/org/apache/commons/logging/LogConfigurationException.java b/src/main/java/org/apache/commons/logging/LogConfigurationException.java
index b2dd465..bc81dc9 100644
--- a/src/main/java/org/apache/commons/logging/LogConfigurationException.java
+++ b/src/main/java/org/apache/commons/logging/LogConfigurationException.java
@@ -33,7 +33,6 @@ public class LogConfigurationException extends RuntimeException {
      * Construct a new exception with <code>null</code> as its detail message.
      */
     public LogConfigurationException() {
-        super();
     }
 
     /**
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 c4ccbe7..ed77202 100644
--- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
+++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
@@ -83,7 +83,6 @@ public class LogFactoryImpl extends LogFactory {
      * Public no-arguments constructor required by the lookup mechanism.
      */
     public LogFactoryImpl() {
-        super();
         initDiagnostics();  // method on this object
         if (isDiagnosticsEnabled()) {
             logDiagnostic("Instance created.");