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-io.git


The following commit(s) were added to refs/heads/master by this push:
     new 4616d0f0 Javadoc: Use an HTTPS URL to the Apache web site
4616d0f0 is described below

commit 4616d0f03d91e53ee8b760abeec1c42a1c0c8b01
Author: Gary Gregory <garydgreg...@gmail.com>
AuthorDate: Sun Jan 14 10:43:43 2024 -0500

    Javadoc: Use an HTTPS URL to the Apache web site
---
 src/main/java/org/apache/commons/io/ByteOrderMark.java         | 4 ++--
 src/main/java/org/apache/commons/io/DirectoryWalker.java       | 2 +-
 src/main/java/org/apache/commons/io/FileSystemUtils.java       | 6 +++---
 src/main/java/org/apache/commons/io/input/BOMInputStream.java  | 2 +-
 src/main/java/org/apache/commons/io/input/XmlStreamReader.java | 4 ++--
 5 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/ByteOrderMark.java 
b/src/main/java/org/apache/commons/io/ByteOrderMark.java
index c5ab57b1..6e87d6b3 100644
--- a/src/main/java/org/apache/commons/io/ByteOrderMark.java
+++ b/src/main/java/org/apache/commons/io/ByteOrderMark.java
@@ -39,7 +39,7 @@ import java.util.Objects;
  * </p>
  *
  * @see org.apache.commons.io.input.BOMInputStream
- * @see <a href="http://en.wikipedia.org/wiki/Byte_order_mark";>Wikipedia: Byte 
Order Mark</a>
+ * @see <a href="https://en.wikipedia.org/wiki/Byte_order_mark";>Wikipedia: 
Byte Order Mark</a>
  * @see <a 
href="http://www.w3.org/TR/2006/REC-xml-20060816/#sec-guessing";>W3C: 
Autodetection of Character Encodings
  *      (Non-Normative)</a>
  * @since 2.0
@@ -110,7 +110,7 @@ public class ByteOrderMark implements Serializable {
     /**
      * Unicode BOM character; external form depends on the encoding.
      *
-     * @see <a href="http://unicode.org/faq/utf_bom.html#BOM";>Byte Order Mark 
(BOM) FAQ</a>
+     * @see <a href="https://unicode.org/faq/utf_bom.html#BOM";>Byte Order Mark 
(BOM) FAQ</a>
      * @since 2.5
      */
     public static final char UTF_BOM = '\uFEFF';
diff --git a/src/main/java/org/apache/commons/io/DirectoryWalker.java 
b/src/main/java/org/apache/commons/io/DirectoryWalker.java
index 468682e8..55dfe901 100644
--- a/src/main/java/org/apache/commons/io/DirectoryWalker.java
+++ b/src/main/java/org/apache/commons/io/DirectoryWalker.java
@@ -187,7 +187,7 @@ import org.apache.commons.io.filefilter.TrueFileFilter;
  * <p>
  * This example provides a public {@code cancel()} method that can be called 
by another thread to stop the
  * processing. A typical example use-case would be a cancel button on a GUI. 
Calling this method sets a
- * <a 
href="http://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#36930";>
 volatile</a> flag to ensure
+ * <a 
href="https://java.sun.com/docs/books/jls/second_edition/html/classes.doc.html#36930";>
 volatile</a> flag to ensure
  * it will work properly in a multi-threaded environment. The flag is returned 
by the {@code handleIsCancelled()}
  * method, which will cause the walk to stop immediately. The {@code 
handleCancelled()} method will be the next,
  * and last, callback method received once cancellation has occurred.
diff --git a/src/main/java/org/apache/commons/io/FileSystemUtils.java 
b/src/main/java/org/apache/commons/io/FileSystemUtils.java
index 57f312ec..8a244ec1 100644
--- a/src/main/java/org/apache/commons/io/FileSystemUtils.java
+++ b/src/main/java/org/apache/commons/io/FileSystemUtils.java
@@ -469,9 +469,9 @@ public class FileSystemUtils {
         //
         // This method does what it can to avoid the 'Too many open files' 
error
         // based on trial and error and these links:
-        // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4784692
-        // http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4801027
-        // 
http://forum.java.sun.com/thread.jspa?threadID=533029&messageID=2572018
+        // https://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4784692
+        // https://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4801027
+        // 
https://forum.java.sun.com/thread.jspa?threadID=533029&messageID=2572018
         // however, it's still not perfect as the JDK support is so poor
         // (see commons-exec or Ant for a better multithreaded multi-OS 
solution)
         //
diff --git a/src/main/java/org/apache/commons/io/input/BOMInputStream.java 
b/src/main/java/org/apache/commons/io/input/BOMInputStream.java
index c5bebc7c..b113a0f3 100644
--- a/src/main/java/org/apache/commons/io/input/BOMInputStream.java
+++ b/src/main/java/org/apache/commons/io/input/BOMInputStream.java
@@ -91,7 +91,7 @@ import org.apache.commons.io.build.AbstractStreamBuilder;
  * </pre>
  *
  * @see org.apache.commons.io.ByteOrderMark
- * @see <a href="http://en.wikipedia.org/wiki/Byte_order_mark";>Wikipedia - 
Byte Order Mark</a>
+ * @see <a href="https://en.wikipedia.org/wiki/Byte_order_mark";>Wikipedia - 
Byte Order Mark</a>
  * @since 2.0
  */
 public class BOMInputStream extends ProxyInputStream {
diff --git a/src/main/java/org/apache/commons/io/input/XmlStreamReader.java 
b/src/main/java/org/apache/commons/io/input/XmlStreamReader.java
index 37d1596e..b6f53c8c 100644
--- a/src/main/java/org/apache/commons/io/input/XmlStreamReader.java
+++ b/src/main/java/org/apache/commons/io/input/XmlStreamReader.java
@@ -58,14 +58,14 @@ import org.apache.commons.io.output.XmlStreamWriter;
  * </p>
  * <p>
  * 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
- * 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
+ * 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
  * the character encoding of a feed</a>.
  * </p>
  * <p>
  * To build an instance, see {@link Builder}.
  * </p>
  * <p>
- * Originally developed for <a href="http://rome.dev.java.net";>ROME</a> under 
Apache License 2.0.
+ * Originally developed for <a href="https://rome.dev.java.net";>ROME</a> under 
Apache License 2.0.
  * </p>
  *
  * @see org.apache.commons.io.output.XmlStreamWriter

Reply via email to