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 34a961c3e Use HTTPS in URL
34a961c3e is described below

commit 34a961c3ed58ed96c73836db154ae50f0c45110f
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Nov 2 10:25:35 2025 -0500

    Use HTTPS in URL
---
 .../java/org/apache/commons/io/ByteOrderMark.java  |  2 +-
 src/main/java/org/apache/commons/io/CopyUtils.java | 10 ++++----
 src/main/java/org/apache/commons/io/IOUtils.java   | 28 +++++++++++-----------
 .../serialization/ValidatingObjectInputStream.java |  2 +-
 src/site/xdoc/building.xml                         |  4 ++--
 src/site/xdoc/description.xml                      |  2 +-
 6 files changed, 24 insertions(+), 24 deletions(-)

diff --git a/src/main/java/org/apache/commons/io/ByteOrderMark.java 
b/src/main/java/org/apache/commons/io/ByteOrderMark.java
index 0067f7d2d..9624a0ba8 100644
--- a/src/main/java/org/apache/commons/io/ByteOrderMark.java
+++ b/src/main/java/org/apache/commons/io/ByteOrderMark.java
@@ -40,7 +40,7 @@
  *
  * @see org.apache.commons.io.input.BOMInputStream
  * @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
+ * @see <a 
href="https://www.w3.org/TR/2006/REC-xml-20060816/#sec-guessing";>W3C: 
Autodetection of Character Encodings
  *      (Non-Normative)</a>
  * @since 2.0
  */
diff --git a/src/main/java/org/apache/commons/io/CopyUtils.java 
b/src/main/java/org/apache/commons/io/CopyUtils.java
index b3243a30a..bb9ac470c 100644
--- a/src/main/java/org/apache/commons/io/CopyUtils.java
+++ b/src/main/java/org/apache/commons/io/CopyUtils.java
@@ -46,7 +46,7 @@
  * released when the associated Stream is garbage-collected. It is not a good
  * idea to rely on this mechanism. For a good overview of the distinction
  * between "memory management" and "resource management", see
- * <a href="http://www.unixreview.com/articles/1998/9804/9804ja/ja.htm";>this
+ * <a href="https://www.unixreview.com/articles/1998/9804/9804ja/ja.htm";>this
  * UnixReview article</a>.
  * <p>
  * For byte-to-char methods, a {@code copy} variant allows the encoding
@@ -148,7 +148,7 @@ public static void copy(final byte[] input, final Writer 
output) throws IOExcept
      * @param input the byte array to read from
      * @param output the {@link Writer} to write to
      * @param encoding The name of a supported character encoding. See the
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA
      * Charset Registry</a> for a list of valid encoding types.
      * @throws IOException In case of an I/O problem
      */
@@ -206,7 +206,7 @@ public static void copy(
      * @param input the {@link InputStream} to read from
      * @param output the {@link Writer} to write to
      * @param encoding The name of a supported character encoding. See the
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA
      * Charset Registry</a> for a list of valid encoding types.
      * @throws IOException In case of an I/O problem
      */
@@ -251,7 +251,7 @@ public static void copy(
      * @param input the {@link Reader} to read from
      * @param output the {@link OutputStream} to write to
      * @param encoding The name of a supported character encoding. See the
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA
      * Charset Registry</a> for a list of valid encoding types.
      * @throws IOException In case of an I/O problem
      * @since 2.5
@@ -327,7 +327,7 @@ public static void copy(
      * @param input the {@link String} to read from
      * @param output the {@link OutputStream} to write to
      * @param encoding The name of a supported character encoding. See the
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA
      * Charset Registry</a> for a list of valid encoding types.
      * @throws IOException In case of an I/O problem
      * @since 2.5
diff --git a/src/main/java/org/apache/commons/io/IOUtils.java 
b/src/main/java/org/apache/commons/io/IOUtils.java
index 5a005fa67..09a018b03 100644
--- a/src/main/java/org/apache/commons/io/IOUtils.java
+++ b/src/main/java/org/apache/commons/io/IOUtils.java
@@ -1596,7 +1596,7 @@ public static void copy(final Reader reader, final 
OutputStream output, final Ch
      * This method buffers the input internally, so there is no need to use a 
{@link BufferedReader}.
      * </p>
      * <p>
-     * Character encoding names can be found at <a 
href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * Character encoding names can be found at <a 
href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * Due to the implementation of OutputStreamWriter, this method performs a 
flush.
@@ -2426,7 +2426,7 @@ public static List<String> readLines(final InputStream 
input, final Charset char
      * one entry per line, using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method buffers the input internally, so there is no need to use a
@@ -3080,7 +3080,7 @@ public static byte[] toByteArray(final Reader reader, 
final Charset charset) thr
      * using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method buffers the input internally, so there is no need to use a
@@ -3207,7 +3207,7 @@ public static char[] toCharArray(final InputStream 
inputStream, final Charset ch
      * using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method buffers the input internally, so there is no need to use a
@@ -3277,7 +3277,7 @@ public static InputStream toInputStream(final 
CharSequence input, final Charset
      * using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      *
      * @param input the CharSequence to convert.
@@ -3322,7 +3322,7 @@ public static InputStream toInputStream(final String 
input, final Charset charse
      * using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      *
      * @param input the string to convert.
@@ -3355,7 +3355,7 @@ public static String toString(final byte[] input) {
      * using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      *
      * @param input the byte array to read.
@@ -3413,7 +3413,7 @@ public static String toString(final InputStream input, 
final Charset charset) th
      * using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method buffers the input internally, so there is no need to use a
@@ -3639,7 +3639,7 @@ public static void write(final byte[] data, final Writer 
writer, final Charset c
     /**
      * Writes bytes from a {@code byte[]} to chars on a {@link Writer} using 
the specified character encoding.
      * <p>
-     * Character encoding names can be found at <a 
href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * Character encoding names can be found at <a 
href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method uses {@link String#String(byte[], String)}.
@@ -3698,7 +3698,7 @@ public static void write(final char[] data, final 
OutputStream output, final Cha
     /**
      * Writes chars from a {@code char[]} to bytes on an {@link OutputStream} 
using the specified character encoding.
      * <p>
-     * Character encoding names can be found at <a 
href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * Character encoding names can be found at <a 
href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method uses {@link String#String(char[])} and {@link 
String#getBytes(String)}.
@@ -3775,7 +3775,7 @@ public static void write(final CharSequence data, final 
OutputStream output, fin
     /**
      * Writes chars from a {@link CharSequence} to bytes on an {@link 
OutputStream} using the specified character encoding.
      * <p>
-     * Character encoding names can be found at <a 
href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * Character encoding names can be found at <a 
href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method uses {@link String#getBytes(String)}.
@@ -3858,7 +3858,7 @@ public static void write(final String data, final 
OutputStream output, final Cha
      * {@link OutputStream} using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method uses {@link String#getBytes(String)}.
@@ -3918,7 +3918,7 @@ public static void write(final StringBuffer data, final 
OutputStream output) //N
      * {@link OutputStream} using the specified character encoding.
      * <p>
      * Character encoding names can be found at
-     * <a href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * <a href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      * <p>
      * This method uses {@link String#getBytes(String)}.
@@ -4064,7 +4064,7 @@ public static void writeLines(final Collection<?> lines, 
String lineEnding, fina
      * Writes the {@link #toString()} value of each item in a collection to an 
{@link OutputStream} line by line, using the specified character encoding and 
the
      * specified line ending.
      * <p>
-     * Character encoding names can be found at <a 
href="http://www.iana.org/assignments/character-sets";>IANA</a>.
+     * Character encoding names can be found at <a 
href="https://www.iana.org/assignments/character-sets";>IANA</a>.
      * </p>
      *
      * @param lines       the lines to write, null entries produce blank lines.
diff --git 
a/src/main/java/org/apache/commons/io/serialization/ValidatingObjectInputStream.java
 
b/src/main/java/org/apache/commons/io/serialization/ValidatingObjectInputStream.java
index 6141cc59b..d2e51425b 100644
--- 
a/src/main/java/org/apache/commons/io/serialization/ValidatingObjectInputStream.java
+++ 
b/src/main/java/org/apache/commons/io/serialization/ValidatingObjectInputStream.java
@@ -74,7 +74,7 @@
  * }
  * }</pre>
  * <p>
- * Design inspired by a <a 
href="http://www.ibm.com/developerworks/library/se-lookahead/";>IBM 
DeveloperWorks Article</a>.
+ * Design inspired by a <a 
href="https://www.ibm.com/developerworks/library/se-lookahead/";>IBM 
DeveloperWorks Article</a>.
  * </p>
  *
  * @since 2.5
diff --git a/src/site/xdoc/building.xml b/src/site/xdoc/building.xml
index be5de6b1a..bef84849f 100644
--- a/src/site/xdoc/building.xml
+++ b/src/site/xdoc/building.xml
@@ -25,7 +25,7 @@ limitations under the License.
 <body>
 <section name="Overview">
 <p>
-  Commons IO uses <a href="http://maven.apache.org";>Maven</a> its build system.
+  Commons IO uses <a href="https://maven.apache.org";>Maven</a> its build 
system.
 </p>
 <p>
   Commons IO requires a minimum of JDK 8 to build.
@@ -46,7 +46,7 @@ limitations under the License.
 </section>
 <section name="Maven Goals">
   <p>
-    The following <a href="http://maven.apache.org";>Maven</a> commands can be 
used to build io:
+    The following <a href="https://maven.apache.org";>Maven</a> commands can be 
used to build io:
   </p>
   <ul>
     <li><code>mvn</code> - runs the default Maven goal which performs all 
build checks</li>
diff --git a/src/site/xdoc/description.xml b/src/site/xdoc/description.xml
index 94b7d1bf0..230a43a84 100644
--- a/src/site/xdoc/description.xml
+++ b/src/site/xdoc/description.xml
@@ -157,7 +157,7 @@ limitations under the License.
         </ul>
         <p>
             For more information, see
-            <a 
href="http://www.cs.umass.edu/~verts/cs32/endian.html";>https://www.cs.umass.edu/~verts/cs32/endian.html</a>
+            <a 
href="https://www.cs.umass.edu/~verts/cs32/endian.html";>https://www.cs.umass.edu/~verts/cs32/endian.html</a>
          </p>
     </section>
     <section name="Line iterator">

Reply via email to