Skip to content

Commit 3abfa91

Browse files
committed
Javadoc and comments: Use an HTTPS URL
1 parent 7b02f26 commit 3abfa91

3 files changed

Lines changed: 4 additions & 4 deletions

File tree

src/main/java/org/apache/commons/csv/CSVFormat.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1105,7 +1105,7 @@ public CSVFormat getFormat() {
11051105
* </ul>
11061106
*
11071107
* @see Predefined#MySQL
1108-
* @see <a href="http://dev.mysql.com/doc/refman/5.1/en/load-data.html"> http://dev.mysql.com/doc/refman/5.1/en/load
1108+
* @see <a href="https://dev.mysql.com/doc/refman/5.1/en/load-data.html"> https://dev.mysql.com/doc/refman/5.1/en/load
11091109
* -data.html</a>
11101110
*/
11111111
// @formatter:off
@@ -1237,7 +1237,7 @@ public CSVFormat getFormat() {
12371237
// @formatter:off
12381238

12391239
/**
1240-
* Comma separated format as defined by <a href="http://tools.ietf.org/html/rfc4180">RFC 4180</a>.
1240+
* Comma separated format as defined by <a href="https://tools.ietf.org/html/rfc4180">RFC 4180</a>.
12411241
*
12421242
* <p>
12431243
* The {@link Builder} settings are:

src/main/java/org/apache/commons/csv/CSVParser.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@
9292
*
9393
* <p>
9494
* This will read the parse the contents of the file using the
95-
* <a href="http://tools.ietf.org/html/rfc4180" target="_blank">RFC 4180</a> format.
95+
* <a href="https://tools.ietf.org/html/rfc4180" target="_blank">RFC 4180</a> format.
9696
* </p>
9797
*
9898
* <p>

src/main/java/org/apache/commons/csv/package-info.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@
2121
* <p>CSV are widely used as interfaces to legacy systems or manual data imports.
2222
* CSV stands for "Comma Separated Values" (or sometimes "Character Separated
2323
* Values"). The CSV data format is defined in
24-
* <a href="http://tools.ietf.org/html/rfc4180" target="_blank">RFC 4180</a>
24+
* <a href="https://tools.ietf.org/html/rfc4180" target="_blank">RFC 4180</a>
2525
* but many dialects exist.</p>
2626
*
2727
* <p>Common to all file dialects is its basic structure: The CSV data-format

0 commit comments

Comments
 (0)