You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2024/01/14 15:58:26 UTC

(commons-configuration) branch master updated: Javadoc and comments: Use an HTTPS URL

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


The following commit(s) were added to refs/heads/master by this push:
     new 2b4d32af Javadoc and comments: Use an HTTPS URL
2b4d32af is described below

commit 2b4d32af86e77e87eff573a39a2b0b3c89183214
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sun Jan 14 10:58:22 2024 -0500

    Javadoc and comments: Use an HTTPS URL
---
 .../java/org/apache/commons/configuration2/io/DefaultFileSystem.java    | 2 +-
 .../java/org/apache/commons/configuration2/io/FileLocatorUtils.java     | 2 +-
 .../apache/commons/configuration2/plist/PropertyListConfiguration.java  | 2 +-
 3 files changed, 3 insertions(+), 3 deletions(-)

diff --git a/src/main/java/org/apache/commons/configuration2/io/DefaultFileSystem.java b/src/main/java/org/apache/commons/configuration2/io/DefaultFileSystem.java
index 6587f881..75c46e43 100644
--- a/src/main/java/org/apache/commons/configuration2/io/DefaultFileSystem.java
+++ b/src/main/java/org/apache/commons/configuration2/io/DefaultFileSystem.java
@@ -59,7 +59,7 @@ public class DefaultFileSystem extends FileSystem {
     @Override
     public OutputStream getOutputStream(final URL url) throws ConfigurationException {
         // file URLs have to be converted to Files since FileURLConnection is
-        // read only (http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4191800)
+        // read only (https://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4191800)
         final File file = FileLocatorUtils.fileFromURL(url);
         if (file != null) {
             return getOutputStream(file);
diff --git a/src/main/java/org/apache/commons/configuration2/io/FileLocatorUtils.java b/src/main/java/org/apache/commons/configuration2/io/FileLocatorUtils.java
index 4e01656f..6f0978ad 100644
--- a/src/main/java/org/apache/commons/configuration2/io/FileLocatorUtils.java
+++ b/src/main/java/org/apache/commons/configuration2/io/FileLocatorUtils.java
@@ -292,7 +292,7 @@ public final class FileLocatorUtils {
     }
 
     /**
-     * Return the path without the file name, for example http://xyz.net/foo/bar.xml results in http://xyz.net/foo/
+     * Return the path without the file name, for example https://xyz.net/foo/bar.xml results in https://xyz.net/foo/
      *
      * @param url the URL from which to extract the path
      * @return the path component of the passed in URL
diff --git a/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java b/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java
index 2a804691..fa038a9a 100644
--- a/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java
+++ b/src/main/java/org/apache/commons/configuration2/plist/PropertyListConfiguration.java
@@ -49,7 +49,7 @@ import org.apache.commons.lang3.StringUtils;
  * References:
  * <ul>
  * <li><a href=
- * "http://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/OldStylePlists/OldStylePLists.html"> Apple
+ * "https://developer.apple.com/documentation/Cocoa/Conceptual/PropertyLists/OldStylePlists/OldStylePLists.html"> Apple
  * Documentation - Old-Style ASCII Property Lists</a></li>
  * <li><a href="http://www.gnustep.org/resources/documentation/Developer/Base/Reference/NSPropertyList.html"> GNUStep
  * Documentation</a></li>