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:44 UTC

(commons-validator) 12/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 2118daa18ab94568162ebfe718c8863a23908cf0
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Feb 4 14:08:59 2024 -0500

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

diff --git a/src/main/java/org/apache/commons/validator/routines/checkdigit/LuhnCheckDigit.java b/src/main/java/org/apache/commons/validator/routines/checkdigit/LuhnCheckDigit.java
index e23dea85..e94c9197 100644
--- a/src/main/java/org/apache/commons/validator/routines/checkdigit/LuhnCheckDigit.java
+++ b/src/main/java/org/apache/commons/validator/routines/checkdigit/LuhnCheckDigit.java
@@ -50,7 +50,6 @@ public final class LuhnCheckDigit extends ModulusCheckDigit {
      * Constructs a modulus 10 Luhn Check Digit routine.
      */
     public LuhnCheckDigit() {
-        super();
     }
 
     /**