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 2024/02/04 19:10:46 UTC

(commons-validator) 14/19: Explicit call to super is redundant

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-validator.git

commit 3e7b102c442ea294de920a1e4e34a144c90d28a6
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Feb 4 14:09:17 2024 -0500

    Explicit call to super is redundant
---
 .../apache/commons/validator/routines/checkdigit/SedolCheckDigit.java    | 1 -
 1 file changed, 1 deletion(-)

diff --git a/src/main/java/org/apache/commons/validator/routines/checkdigit/SedolCheckDigit.java b/src/main/java/org/apache/commons/validator/routines/checkdigit/SedolCheckDigit.java
index b34ad43f..fc9726ec 100644
--- a/src/main/java/org/apache/commons/validator/routines/checkdigit/SedolCheckDigit.java
+++ b/src/main/java/org/apache/commons/validator/routines/checkdigit/SedolCheckDigit.java
@@ -54,7 +54,6 @@ public final class SedolCheckDigit extends ModulusCheckDigit {
      * Constructs a modulus 10 Check Digit routine for ISBN-10.
      */
     public SedolCheckDigit() {
-        super();
     }
 
     /**