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 a80e71fc Javadoc
a80e71fc is described below

commit a80e71fced631d89c9c6ddb9fbd0a2ef913aaa08
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sat Mar 23 09:51:02 2024 -0400

    Javadoc
---
 .../java/org/apache/commons/validator/routines/ISINValidator.java | 8 +++++---
 1 file changed, 5 insertions(+), 3 deletions(-)

diff --git 
a/src/main/java/org/apache/commons/validator/routines/ISINValidator.java 
b/src/main/java/org/apache/commons/validator/routines/ISINValidator.java
index 5a812f3d..34487d53 100644
--- a/src/main/java/org/apache/commons/validator/routines/ISINValidator.java
+++ b/src/main/java/org/apache/commons/validator/routines/ISINValidator.java
@@ -71,7 +71,8 @@ public class ISINValidator implements Serializable {
     }
 
     /**
-     * Gets the singleton instance of the ISIN validator
+     * Gets the singleton instance of the ISIN validator.
+     *
      * @param checkCountryCode whether to check the country-code prefix or not
      * @return A singleton instance of the appropriate ISIN validator.
      */
@@ -93,8 +94,9 @@ public class ISINValidator implements Serializable {
     }
 
     /**
-     * Check the code is a valid ISIN code after any transformation
+     * Tests whether the code is a valid ISIN code after any transformation
      * by the validate routine.
+     *
      * @param code The code to validate.
      * @return {@code true} if a valid ISIN
      * code, otherwise {@code false}.
@@ -108,7 +110,7 @@ public class ISINValidator implements Serializable {
     }
 
     /**
-     * Check the code is valid ISIN code.
+     * Checks the code is valid ISIN code.
      *
      * @param code The code to validate.
      * @return A valid ISIN code if valid, otherwise {@code null}.

Reply via email to