Skip to content

Commit e6deb27

Browse files
committed
Javadoc
Add an empty line before a Javadoc comment
1 parent 77d7d1e commit e6deb27

File tree

6 files changed

+15
-0
lines changed

6 files changed

+15
-0
lines changed

src/main/java/org/apache/commons/validator/Field.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -827,6 +827,7 @@ public void setFieldOrder(final int fieldOrder) {
827827
public void setIndexedListProperty(final String indexedListProperty) {
828828
this.indexedListProperty = indexedListProperty;
829829
}
830+
830831
/**
831832
* Sets the indexed property name of the field.
832833
*

src/main/java/org/apache/commons/validator/ValidatorResult.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ public ResultStatus(final boolean valid, final Object result) {
5252
this.valid = valid;
5353
this.result = result;
5454
}
55+
5556
/**
5657
* Provided for backwards binary compatibility only.
5758
*

src/main/java/org/apache/commons/validator/routines/DomainValidator.java

Lines changed: 10 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -71,28 +71,38 @@ public class DomainValidator implements Serializable {
7171
* @since 1.5.1 made public and added read-only array references
7272
*/
7373
public enum ArrayType {
74+
7475
/** Update (or get a copy of) the GENERIC_TLDS_PLUS table containing additional generic TLDs */
7576
GENERIC_PLUS,
77+
7678
/** Update (or get a copy of) the GENERIC_TLDS_MINUS table containing deleted generic TLDs */
7779
GENERIC_MINUS,
80+
7881
/** Update (or get a copy of) the COUNTRY_CODE_TLDS_PLUS table containing additional country code TLDs */
7982
COUNTRY_CODE_PLUS,
83+
8084
/** Update (or get a copy of) the COUNTRY_CODE_TLDS_MINUS table containing deleted country code TLDs */
8185
COUNTRY_CODE_MINUS,
86+
8287
/** Gets a copy of the generic TLDS table */
8388
GENERIC_RO,
89+
8490
/** Gets a copy of the country code table */
8591
COUNTRY_CODE_RO,
92+
8693
/** Gets a copy of the infrastructure table */
8794
INFRASTRUCTURE_RO,
95+
8896
/** Gets a copy of the local table */
8997
LOCAL_RO,
98+
9099
/**
91100
* Update (or get a copy of) the LOCAL_TLDS_PLUS table containing additional local TLDs
92101
*
93102
* @since 1.7
94103
*/
95104
LOCAL_PLUS,
105+
96106
/**
97107
* Update (or get a copy of) the LOCAL_TLDS_MINUS table containing deleted local TLDs
98108
*

src/main/java/org/apache/commons/validator/routines/IBANValidatorStatus.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* @since 1.10.0
2323
*/
2424
public enum IBANValidatorStatus {
25+
2526
/**
2627
* IBAN is valid
2728
*/

src/main/java/org/apache/commons/validator/routines/checkdigit/CASNumberCheckDigit.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -68,6 +68,7 @@ public final class CASNumberCheckDigit extends ModulusCheckDigit {
6868
/** maximum capacity of 1,000,000,000 == 9999999-99-9*/
6969
private static final int CAS_MAX_LEN = 10;
7070
static final CodeValidator REGEX_VALIDATOR = new CodeValidator(CAS_REGEX, CAS_MIN_LEN, CAS_MAX_LEN, null);
71+
7172
/** Weighting given to digits depending on their right position */
7273
private static final int[] POSITION_WEIGHT = { 0, 1, 2, 3, 4, 5, 6, 7, 8, 9 };
7374

src/main/java/org/apache/commons/validator/routines/checkdigit/ECNumberCheckDigit.java

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -58,6 +58,7 @@ public final class ECNumberCheckDigit extends ModulusCheckDigit {
5858
private static final int EC_LEN = 7;
5959

6060
static final CodeValidator REGEX_VALIDATOR = new CodeValidator(EC_REGEX, EC_LEN, null);
61+
6162
/**
6263
* Gets the singleton instance of this validator.
6364
*

0 commit comments

Comments
 (0)