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 f0014acaebb83995def2fb91bc1f200125bf3d96 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Jul 21 11:06:54 2024 -0400 Javadoc --- src/main/java/org/apache/commons/validator/routines/ISINValidator.java | 3 +++ 1 file changed, 3 insertions(+) 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 38ab4b26..6bd6e477 100644 --- a/src/main/java/org/apache/commons/validator/routines/ISINValidator.java +++ b/src/main/java/org/apache/commons/validator/routines/ISINValidator.java @@ -438,6 +438,9 @@ public class ISINValidator implements Serializable { return checkCountryCode ? ISIN_VALIDATOR_TRUE : ISIN_VALIDATOR_FALSE; } + /** + * Whether to check the country code during validation. + */ private final boolean checkCountryCode; private ISINValidator(final boolean checkCountryCode) {