Skip to content

Commit 4616d0f

Browse files
committed
Javadoc: Use an HTTPS URL to the Apache web site
1 parent b519c7e commit 4616d0f

5 files changed

Lines changed: 9 additions & 9 deletions

File tree

src/main/java/org/apache/commons/io/ByteOrderMark.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,7 +39,7 @@
3939
* </p>
4040
*
4141
* @see org.apache.commons.io.input.BOMInputStream
42-
* @see <a href="http://en.wikipedia.org/wiki/Byte_order_mark">Wikipedia: Byte Order Mark</a>
42+
* @see <a href="https://en.wikipedia.org/wiki/Byte_order_mark">Wikipedia: Byte Order Mark</a>
4343
* @see <a href="http://www.w3.org/TR/2006/REC-xml-20060816/#sec-guessing">W3C: Autodetection of Character Encodings
4444
* (Non-Normative)</a>
4545
* @since 2.0
@@ -110,7 +110,7 @@ public class ByteOrderMark implements Serializable {
110110
/**
111111
* Unicode BOM character; external form depends on the encoding.
112112
*
113-
* @see <a href="http://unicode.org/faq/utf_bom.html#BOM">Byte Order Mark (BOM) FAQ</a>
113+
* @see <a href="https://unicode.org/faq/utf_bom.html#BOM">Byte Order Mark (BOM) FAQ</a>
114114
* @since 2.5
115115
*/
116116
public static final char UTF_BOM = '\uFEFF';

src/main/java/org/apache/commons/io/DirectoryWalker.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -187,7 +187,7 @@
187187
* <p>
188188
* This example provides a public {@code cancel()} method that can be called by another thread to stop the
189189
* processing. A typical example use-case would be a cancel button on a GUI. Calling this method sets a
190-
* <a href="http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#36930"> volatile</a> flag to ensure
190+
* <a href="https://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#36930"> volatile</a> flag to ensure
191191
* it will work properly in a multi-threaded environment. The flag is returned by the {@code handleIsCancelled()}
192192
* method, which will cause the walk to stop immediately. The {@code handleCancelled()} method will be the next,
193193
* and last, callback method received once cancellation has occurred.

src/main/java/org/apache/commons/io/FileSystemUtils.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -469,9 +469,9 @@ List<String> performCommand(final String[] cmdAttribs, final int max, final Dura
469469
//
470470
// This method does what it can to avoid the 'Too many open files' error
471471
// based on trial and error and these links:
472-
// http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4784692
473-
// http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4801027
474-
// http://forum.java.sun.com/thread.jspa?threadID=533029&messageID=2572018
472+
// https://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4784692
473+
// https://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4801027
474+
// https://forum.java.sun.com/thread.jspa?threadID=533029&messageID=2572018
475475
// however, it's still not perfect as the JDK support is so poor
476476
// (see commons-exec or Ant for a better multithreaded multi-OS solution)
477477
//

src/main/java/org/apache/commons/io/input/BOMInputStream.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -91,7 +91,7 @@
9191
* </pre>
9292
*
9393
* @see org.apache.commons.io.ByteOrderMark
94-
* @see <a href="http://en.wikipedia.org/wiki/Byte_order_mark">Wikipedia - Byte Order Mark</a>
94+
* @see <a href="https://en.wikipedia.org/wiki/Byte_order_mark">Wikipedia - Byte Order Mark</a>
9595
* @since 2.0
9696
*/
9797
public class BOMInputStream extends ProxyInputStream {

src/main/java/org/apache/commons/io/input/XmlStreamReader.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -58,14 +58,14 @@
5858
* </p>
5959
* <p>
6060
* By default the charset encoding detection is lenient, the constructor with the lenient flag can be used for a script (following HTTP MIME and XML
61-
* specifications). All this is nicely explained by Mark Pilgrim in his blog, <a href="http://diveintomark.org/archives/2004/02/13/xml-media-types"> Determining
61+
* specifications). All this is nicely explained by Mark Pilgrim in his blog, <a href="https://diveintomark.org/archives/2004/02/13/xml-media-types"> Determining
6262
* the character encoding of a feed</a>.
6363
* </p>
6464
* <p>
6565
* To build an instance, see {@link Builder}.
6666
* </p>
6767
* <p>
68-
* Originally developed for <a href="http://rome.dev.java.net">ROME</a> under Apache License 2.0.
68+
* Originally developed for <a href="https://rome.dev.java.net">ROME</a> under Apache License 2.0.
6969
* </p>
7070
*
7171
* @see org.apache.commons.io.output.XmlStreamWriter

0 commit comments

Comments
 (0)