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

garydgregory 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 383d0b38 Javadoc
383d0b38 is described below

commit 383d0b38f36fcd9e1c1a361ce0d54cab23f41f20
Author: Gary Gregory <[email protected]>
AuthorDate: Fri Jun 5 08:35:13 2026 -0400

    Javadoc
---
 .../apache/commons/validator/routines/checkdigit/CUSIPCheckDigit.java  | 2 --
 .../apache/commons/validator/routines/checkdigit/IBANCheckDigit.java   | 1 +
 .../apache/commons/validator/routines/checkdigit/ISBNCheckDigit.java   | 3 +--
 .../apache/commons/validator/routines/checkdigit/ISINCheckDigit.java   | 2 --
 src/main/java/org/apache/commons/validator/util/ValidatorUtils.java    | 2 +-
 5 files changed, 3 insertions(+), 7 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/CUSIPCheckDigit.java
 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/CUSIPCheckDigit.java
index 2b568f57..2343f72d 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/CUSIPCheckDigit.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/CUSIPCheckDigit.java
@@ -74,9 +74,7 @@ public final class CUSIPCheckDigit extends ModulusCheckDigit {
     }
 
     /**
-     * <p>
      * Calculates the <em>weighted</em> value of a character in the code at a 
specified position.
-     * </p>
      *
      * <p>
      * For CUSIP (from right to left) <strong>odd</strong> digits are weighted 
with a factor of <strong>one</strong> and <strong>even</strong> digits with a
diff --git 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/IBANCheckDigit.java
 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/IBANCheckDigit.java
index efc543c1..795a033b 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/IBANCheckDigit.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/IBANCheckDigit.java
@@ -64,6 +64,7 @@ public final class IBANCheckDigit extends AbstractCheckDigit 
implements Serializ
      * Calculate the <em>Check Digit</em> for an IBAN code.
      * <p>
      * <strong>Note:</strong> The check digit is the third and fourth 
characters and is set to the value "{@code 00}".
+     * </p>
      *
      * @param code The code to calculate the Check Digit for,
      * @return The calculated Check Digit as 2 numeric decimal characters, for 
example, "42",
diff --git 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/ISBNCheckDigit.java
 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/ISBNCheckDigit.java
index d18e6616..161a90e7 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/ISBNCheckDigit.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/ISBNCheckDigit.java
@@ -88,11 +88,10 @@ public final class ISBNCheckDigit extends 
AbstractCheckDigit implements Serializ
     }
 
     /**
-     * <p>
      * Validate an ISBN-10 or ISBN-13 check digit, depending on the length of 
the code.
-     * </p>
      * <p>
      * If the length of the code is 10, it is treated as an ISBN-10 code or ff 
the length of the code is 13, it is treated as an ISBN-13 code.
+     * </p>
      *
      * @param code The ISBN code to validate (should have a length of 10 or 
13).
      * @return {@code true} if the code has a length of 10 and is a valid 
ISBN-10 check digit or the code has a length of 13 and is a valid ISBN-13 check 
digit
diff --git 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/ISINCheckDigit.java
 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/ISINCheckDigit.java
index eb1e04d5..49e3e3a3 100644
--- 
a/src/main/java/org/apache/commons/validator/routines/checkdigit/ISINCheckDigit.java
+++ 
b/src/main/java/org/apache/commons/validator/routines/checkdigit/ISINCheckDigit.java
@@ -86,9 +86,7 @@ public final class ISINCheckDigit extends ModulusCheckDigit {
     }
 
     /**
-     * <p>
      * Calculates the <em>weighted</em> value of a character in the code at a 
specified position.
-     * </p>
      *
      * <p>
      * For ISIN (from right to left) <strong>odd</strong> digits are weighted 
with a factor of <strong>one</strong> and <strong>even</strong> digits with a
diff --git 
a/src/main/java/org/apache/commons/validator/util/ValidatorUtils.java 
b/src/main/java/org/apache/commons/validator/util/ValidatorUtils.java
index 80ff198e..a2232d7e 100644
--- a/src/main/java/org/apache/commons/validator/util/ValidatorUtils.java
+++ b/src/main/java/org/apache/commons/validator/util/ValidatorUtils.java
@@ -139,7 +139,7 @@ public class ValidatorUtils {
     }
 
     /**
-     * <p>Replace part of a {@link String} with another value.</p>
+     * Replace part of a {@link String} with another value.
      *
      * @param value {@link String} to perform the replacement on.
      * @param key The name of the constant.

Reply via email to