Skip to content

Commit

Permalink
Javadoc and comments: Use an HTTPS URL
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Jan 14, 2024
1 parent de67a89 commit f0a77b0
Show file tree
Hide file tree
Showing 17 changed files with 25 additions and 25 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@
* </p>
* <p>
* Based on a script by <a href="mailto:[email protected]">Sandeep V. Tamhankar</a>
* http://javascript.internet.com
* https://javascript.internet.com
* </p>
* <p>
* This implementation is not guaranteed to catch all possible errors in an email address.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -338,7 +338,7 @@ public static boolean maxValue(final float value, final float max) {
return value <= max;
}

// See http://issues.apache.org/bugzilla/show_bug.cgi?id=29015 WRT the "value" methods
// See https://issues.apache.org/bugzilla/show_bug.cgi?id=29015 WRT the "value" methods

/**
* <p>Checks if the value is less than or equal to the max.</p>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* </ul>
*
* <p>Originally based in on php script by Debbie Dyer, validation.php v1.2b, Date: 03/07/02,
* http://javascript.internet.com. However, this validation now bears little resemblance
* https://javascript.internet.com. However, this validation now bears little resemblance
* to the php original.</p>
* <pre>
* Example of usage:
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -2027,7 +2027,7 @@ public static synchronized void updateTLDOverride(final ArrayType table, final S
// ---------------------------------------------
// ----- TLDs defined by IANA
// ----- Authoritative and comprehensive list at:
// ----- http://data.iana.org/TLD/tlds-alpha-by-domain.txt
// ----- https://data.iana.org/TLD/tlds-alpha-by-domain.txt

// Note that the above list is in UPPER case.
// The code currently converts strings to lower case (as per the tables below)
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@
* <p>Perform email validations.</p>
* <p>
* Based on a script by <a href="mailto:[email protected]">Sandeep V. Tamhankar</a>
* http://javascript.internet.com
* https://javascript.internet.com
* </p>
* <p>
* This implementation is not guaranteed to catch all possible errors in an email address.
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,14 +38,14 @@
* <p>
* From 1st January 2007 the book industry will start to use a new 13 digit
* ISBN number (rather than this 10 digit ISBN number). ISBN-13 codes are
* <a href="http://en.wikipedia.org/wiki/European_Article_Number">EAN</a>
* <a href="https://en.wikipedia.org/wiki/European_Article_Number">EAN</a>
* codes, for more information see:</p>
*
* <ul>
* <li><a href="http://en.wikipedia.org/wiki/ISBN">Wikipedia - International
* <li><a href="https://en.wikipedia.org/wiki/ISBN">Wikipedia - International
* Standard Book Number (ISBN)</a>.</li>
* <li>EAN - see
* <a href="http://en.wikipedia.org/wiki/European_Article_Number">Wikipedia -
* <a href="https://en.wikipedia.org/wiki/European_Article_Number">Wikipedia -
* European Article Number</a>.</li>
* <li><a href="http://www.isbn.org/standards/home/isbn/transition.asp">ISBN-13
* Transition details</a>.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@
* </p>
*
* <p>
* See <a href="http://en.wikipedia.org/wiki/ISIN">Wikipedia - ISIN</a>
* See <a href="https://en.wikipedia.org/wiki/ISIN">Wikipedia - ISIN</a>
* for more details.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -39,7 +39,7 @@
* </ul>
*
* <p>Originally based in on php script by Debbie Dyer, validation.php v1.2b, Date: 03/07/02,
* http://javascript.internet.com. However, this validation now bears little resemblance
* https://javascript.internet.com. However, this validation now bears little resemblance
* to the php original.</p>
* <pre>
* Example of usage:
Expand Down Expand Up @@ -96,7 +96,7 @@ public class UrlValidator implements Serializable {
public static final long NO_FRAGMENTS = 1 << 2;

/**
* Allow local URLs, such as http://localhost/ or http://machine/ .
* Allow local URLs, such as https://localhost/ or https://machine/ .
* This enables a broad-brush check, for complex local machine name
* validation requirements you should create your validator with
* a {@link RegexValidator} instead ({@link #UrlValidator(RegexValidator, long)})
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -37,7 +37,7 @@
*
* <p>
* For further information see
* <a href="http://en.wikipedia.org/wiki/Routing_transit_number">Wikipedia -
* <a href="https://en.wikipedia.org/wiki/Routing_transit_number">Wikipedia -
* Routing transit number</a>.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* </p>
*
* <p>
* See <a href="http://en.wikipedia.org/wiki/CUSIP">Wikipedia - CUSIP</a>
* See <a href="https://en.wikipedia.org/wiki/CUSIP">Wikipedia - CUSIP</a>
* for more details.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -27,13 +27,13 @@
* For further information see:
* <ul>
* <li>EAN-13 - see
* <a href="http://en.wikipedia.org/wiki/European_Article_Number">Wikipedia -
* <a href="https://en.wikipedia.org/wiki/European_Article_Number">Wikipedia -
* European Article Number</a>.</li>
* <li>UPC - see
* <a href="http://en.wikipedia.org/wiki/Universal_Product_Code">Wikipedia -
* <a href="https://en.wikipedia.org/wiki/Universal_Product_Code">Wikipedia -
* Universal Product Code</a>.</li>
* <li>ISBN-13 - see
* <a href="http://en.wikipedia.org/wiki/ISBN">Wikipedia - International
* <a href="https://en.wikipedia.org/wiki/ISBN">Wikipedia - International
* Standard Book Number (ISBN)</a>.</li>
* </ul>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@
* Note: the class does not check the format of the IBAN number, only the check digits.
* <p>
* For further information see
* <a href="http://en.wikipedia.org/wiki/International_Bank_Account_Number">Wikipedia -
* <a href="https://en.wikipedia.org/wiki/International_Bank_Account_Number">Wikipedia -
* IBAN number</a>.
*
* @since 1.4
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
* <p>
* For further information see:
* <ul>
* <li><a href="http://en.wikipedia.org/wiki/ISBN">Wikipedia - International
* <li><a href="https://en.wikipedia.org/wiki/ISBN">Wikipedia - International
* Standard Book Number (ISBN)</a>.</li>
* <li><a href="http://www.isbn.org/standards/home/isbn/transition.asp">ISBN-13
* Transition details</a>.</li>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* </p>
*
* <p>
* See <a href="http://en.wikipedia.org/wiki/ISIN">Wikipedia - ISIN</a>
* See <a href="https://en.wikipedia.org/wiki/ISIN">Wikipedia - ISIN</a>
* for more details.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,16 +21,16 @@
*
* Luhn check digits are used, for example, by:
* <ul>
* <li><a href="http://en.wikipedia.org/wiki/Credit_card">Credit Card Numbers</a></li>
* <li><a href="http://en.wikipedia.org/wiki/IMEI">IMEI Numbers</a> - International
* <li><a href="https://en.wikipedia.org/wiki/Credit_card">Credit Card Numbers</a></li>
* <li><a href="https://en.wikipedia.org/wiki/IMEI">IMEI Numbers</a> - International
* Mobile Equipment Identity Numbers</li>
* </ul>
* Check digit calculation is based on <i>modulus 10</i> with digits in
* an <i>odd</i> position (from right to left) being weighted 1 and <i>even</i>
* position digits being weighted 2 (weighted values greater than 9 have 9 subtracted).
*
* <p>
* See <a href="http://en.wikipedia.org/wiki/Luhn_algorithm">Wikipedia</a>
* See <a href="https://en.wikipedia.org/wiki/Luhn_algorithm">Wikipedia</a>
* for more details.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
* weighting: 1 3 1 7 3 9 1
* </code></pre>
* <p>
* See <a href="http://en.wikipedia.org/wiki/SEDOL">Wikipedia - SEDOL</a>
* See <a href="https://en.wikipedia.org/wiki/SEDOL">Wikipedia - SEDOL</a>
* for more details.
* </p>
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,10 +22,10 @@
* <b>Verhoeff</b> (Dihedral) Check Digit calculation/validation.
* <p>
* Check digit calculation for numeric codes using a
* <a href="http://en.wikipedia.org/wiki/Dihedral_group">Dihedral Group</a>
* <a href="https://en.wikipedia.org/wiki/Dihedral_group">Dihedral Group</a>
* of order 10.
* <p>
* See <a href="http://en.wikipedia.org/wiki/Verhoeff_algorithm">Wikipedia
* See <a href="https://en.wikipedia.org/wiki/Verhoeff_algorithm">Wikipedia
* - Verhoeff algorithm</a> for more details.
*
* @since 1.4
Expand Down

0 comments on commit f0a77b0

Please sign in to comment.