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


The following commit(s) were added to refs/heads/master by this push:
     new e6deb272 Javadoc
e6deb272 is described below

commit e6deb272ed8d29c015d14fec86c1f05e4ccdde66
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 4 15:26:11 2026 -0500

    Javadoc
    
    Add an empty line before a Javadoc comment
---
 src/main/java/org/apache/commons/validator/Field.java          |  1 +
 .../java/org/apache/commons/validator/ValidatorResult.java     |  1 +
 .../org/apache/commons/validator/routines/DomainValidator.java | 10 ++++++++++
 .../apache/commons/validator/routines/IBANValidatorStatus.java |  1 +
 .../validator/routines/checkdigit/CASNumberCheckDigit.java     |  1 +
 .../validator/routines/checkdigit/ECNumberCheckDigit.java      |  1 +
 6 files changed, 15 insertions(+)

diff --git a/src/main/java/org/apache/commons/validator/Field.java 
b/src/main/java/org/apache/commons/validator/Field.java
index 4ac8c0a4..86f86c54 100644
--- a/src/main/java/org/apache/commons/validator/Field.java
+++ b/src/main/java/org/apache/commons/validator/Field.java
@@ -827,6 +827,7 @@ public class Field implements Cloneable, Serializable {
     public void setIndexedListProperty(final String indexedListProperty) {
         this.indexedListProperty = indexedListProperty;
     }
+
     /**
      * Sets the indexed property name of the field.
      *
diff --git a/src/main/java/org/apache/commons/validator/ValidatorResult.java 
b/src/main/java/org/apache/commons/validator/ValidatorResult.java
index d5f08742..28067e5b 100644
--- a/src/main/java/org/apache/commons/validator/ValidatorResult.java
+++ b/src/main/java/org/apache/commons/validator/ValidatorResult.java
@@ -52,6 +52,7 @@ public class ValidatorResult implements Serializable {
             this.valid = valid;
             this.result = result;
         }
+
         /**
          * Provided for backwards binary compatibility only.
          *
diff --git 
a/src/main/java/org/apache/commons/validator/routines/DomainValidator.java 
b/src/main/java/org/apache/commons/validator/routines/DomainValidator.java
index 6f165887..bc777d02 100644
--- a/src/main/java/org/apache/commons/validator/routines/DomainValidator.java
+++ b/src/main/java/org/apache/commons/validator/routines/DomainValidator.java
@@ -71,28 +71,38 @@ public class DomainValidator implements Serializable {
      * @since 1.5.1 made public and added read-only array references
      */
     public enum ArrayType {
+
         /** Update (or get a copy of) the GENERIC_TLDS_PLUS table containing 
additional generic TLDs */
         GENERIC_PLUS,
+
         /** Update (or get a copy of) the GENERIC_TLDS_MINUS table containing 
deleted generic TLDs */
         GENERIC_MINUS,
+
         /** Update (or get a copy of) the COUNTRY_CODE_TLDS_PLUS table 
containing additional country code TLDs */
         COUNTRY_CODE_PLUS,
+
         /** Update (or get a copy of) the COUNTRY_CODE_TLDS_MINUS table 
containing deleted country code TLDs */
         COUNTRY_CODE_MINUS,
+
         /** Gets a copy of the generic TLDS table */
         GENERIC_RO,
+
         /** Gets a copy of the country code table */
         COUNTRY_CODE_RO,
+
         /** Gets a copy of the infrastructure table */
         INFRASTRUCTURE_RO,
+
         /** Gets a copy of the local table */
         LOCAL_RO,
+
         /**
          * Update (or get a copy of) the LOCAL_TLDS_PLUS table containing 
additional local TLDs
          *
          * @since 1.7
          */
         LOCAL_PLUS,
+
         /**
          * Update (or get a copy of) the LOCAL_TLDS_MINUS table containing 
deleted local TLDs
          *
diff --git 
a/src/main/java/org/apache/commons/validator/routines/IBANValidatorStatus.java 
b/src/main/java/org/apache/commons/validator/routines/IBANValidatorStatus.java
index db1e8a1e..58d782f8 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/IBANValidatorStatus.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/IBANValidatorStatus.java
@@ -22,6 +22,7 @@ package org.apache.commons.validator.routines;
  * @since 1.10.0
  */
 public enum IBANValidatorStatus {
+
     /**
      * IBAN is valid
      */
diff --git 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/CASNumberCheckDigit.java
 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/CASNumberCheckDigit.java
index 4724007a..ded0d699 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/CASNumberCheckDigit.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/CASNumberCheckDigit.java
@@ -68,6 +68,7 @@ public final class CASNumberCheckDigit extends 
ModulusCheckDigit {
     /** maximum capacity of 1,000,000,000 == 9999999-99-9*/
     private static final int CAS_MAX_LEN = 10;
     static final CodeValidator REGEX_VALIDATOR = new CodeValidator(CAS_REGEX, 
CAS_MIN_LEN, CAS_MAX_LEN, null);
+
     /** Weighting given to digits depending on their right position */
     private static final int[] POSITION_WEIGHT = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 
9 };
 
diff --git 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/ECNumberCheckDigit.java
 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/ECNumberCheckDigit.java
index a0061464..5afd2d66 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/ECNumberCheckDigit.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/ECNumberCheckDigit.java
@@ -58,6 +58,7 @@ public final class ECNumberCheckDigit extends 
ModulusCheckDigit {
     private static final int EC_LEN = 7;
 
     static final CodeValidator REGEX_VALIDATOR = new CodeValidator(EC_REGEX, 
EC_LEN, null);
+
     /**
      * Gets the singleton instance of this validator.
      *

Reply via email to