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 53a3507b Normalize getter Javadoc 53a3507b is described below commit 53a3507b6fa50fad9eadfa5b38c774f243864627 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 06:53:45 2023 -0400 Normalize getter Javadoc --- src/main/java/org/apache/commons/validator/Form.java | 2 +- .../org/apache/commons/validator/ValidatorResources.java | 4 ++-- .../java/org/apache/commons/validator/ValidatorResults.java | 2 +- .../apache/commons/validator/routines/DomainValidator.java | 12 ++++++------ .../org/apache/commons/validator/routines/IBANValidator.java | 2 +- 5 files changed, 11 insertions(+), 11 deletions(-) diff --git a/src/main/java/org/apache/commons/validator/Form.java b/src/main/java/org/apache/commons/validator/Form.java index f7a197a5..37239212 100644 --- a/src/main/java/org/apache/commons/validator/Form.java +++ b/src/main/java/org/apache/commons/validator/Form.java @@ -325,7 +325,7 @@ public class Form implements Serializable { } /** - * Get extends flag. + * Gets extends flag. * * @return The extending value * @since 1.2.0 diff --git a/src/main/java/org/apache/commons/validator/ValidatorResources.java b/src/main/java/org/apache/commons/validator/ValidatorResources.java index a346005c..ed9a7289 100644 --- a/src/main/java/org/apache/commons/validator/ValidatorResources.java +++ b/src/main/java/org/apache/commons/validator/ValidatorResources.java @@ -367,7 +367,7 @@ public class ValidatorResources implements Serializable { } /** - * Get a <code>ValidatorAction</code> based on it's name. + * Gets a <code>ValidatorAction</code> based on it's name. * @param key The validator action key. * @return The validator action. */ @@ -376,7 +376,7 @@ public class ValidatorResources implements Serializable { } /** - * Get an unmodifiable <code>Map</code> of the <code>ValidatorAction</code>s. + * Gets an unmodifiable <code>Map</code> of the <code>ValidatorAction</code>s. * @return Map of validator actions. */ public Map<String, ValidatorAction> getValidatorActions() { diff --git a/src/main/java/org/apache/commons/validator/ValidatorResults.java b/src/main/java/org/apache/commons/validator/ValidatorResults.java index 28fe66f6..99df3f50 100644 --- a/src/main/java/org/apache/commons/validator/ValidatorResults.java +++ b/src/main/java/org/apache/commons/validator/ValidatorResults.java @@ -122,7 +122,7 @@ public class ValidatorResults implements Serializable { } /** - * Get a <code>Map</code> of any <code>Object</code>s returned from + * Gets a <code>Map</code> of any <code>Object</code>s returned from * validation routines. * * @return Map of objections returned by validators. 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 1b306376..72d6c28b 100644 --- a/src/main/java/org/apache/commons/validator/routines/DomainValidator.java +++ b/src/main/java/org/apache/commons/validator/routines/DomainValidator.java @@ -2054,13 +2054,13 @@ public class DomainValidator implements Serializable { COUNTRY_CODE_PLUS, /** Update (or get a copy of) the COUNTRY_CODE_TLDS_MINUS table containing deleted country code TLDs */ COUNTRY_CODE_MINUS, - /** Get a copy of the generic TLDS table */ + /** Gets a copy of the generic TLDS table */ GENERIC_RO, - /** Get a copy of the country code table */ + /** Gets a copy of the country code table */ COUNTRY_CODE_RO, - /** Get a copy of the infrastructure table */ + /** Gets a copy of the infrastructure table */ INFRASTRUCTURE_RO, - /** Get a copy of the local table */ + /** Gets a copy of the local table */ LOCAL_RO, /** * Update (or get a copy of) the LOCAL_TLDS_PLUS table containing additional local TLDs @@ -2159,7 +2159,7 @@ public class DomainValidator implements Serializable { } /** - * Get a copy of a class level internal array. + * Gets a copy of a class level internal array. * @param table the array type (any of the enum values) * @return a copy of the array * @throws IllegalArgumentException if the table type is unexpected (should not happen) @@ -2205,7 +2205,7 @@ public class DomainValidator implements Serializable { } /** - * Get a copy of an instance level internal array. + * Gets a copy of an instance level internal array. * @param table the array type (any of the enum values) * @return a copy of the array * @throws IllegalArgumentException if the table type is unexpected, e.g. GENERIC_RO diff --git a/src/main/java/org/apache/commons/validator/routines/IBANValidator.java b/src/main/java/org/apache/commons/validator/routines/IBANValidator.java index c9b49c7a..a2ee4d0c 100644 --- a/src/main/java/org/apache/commons/validator/routines/IBANValidator.java +++ b/src/main/java/org/apache/commons/validator/routines/IBANValidator.java @@ -310,7 +310,7 @@ public class IBANValidator { } /** - * Get the Validator for a given IBAN + * Gets the Validator for a given IBAN * * @param code a string starting with the ISO country code (e.g. an IBAN) *