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-jcs.git
The following commit(s) were added to refs/heads/master by this push:
new 992417ca Javadoc and comments: Use an HTTPS URL
992417ca is described below
commit 992417caab3417a82bcbb292525cc53f8304df52
Author: Gary Gregory <[email protected]>
AuthorDate: Sun Jan 14 11:11:00 2024 -0500
Javadoc and comments: Use an HTTPS URL
---
.../jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheAttributes.java | 2 +-
.../src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
diff --git
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheAttributes.java
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheAttributes.java
index 594e7e97..d6d0b5ab 100644
---
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheAttributes.java
+++
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/auxiliary/disk/jdbc/mysql/MySQLDiskCacheAttributes.java
@@ -49,7 +49,7 @@ public class MySQLDiskCacheAttributes
/**
* If true, we will balk, that is return null during optimization rather
than block.
* <p>
- * <a href="http://en.wikipedia.org/wiki/Balking_pattern">Balking</a>
+ * <a href="https://en.wikipedia.org/wiki/Balking_pattern">Balking</a>
*/
private boolean balkDuringOptimization = DEFAULT_BALK_DURING_OPTIMIZATION;
diff --git
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java
index d3122ede..8b933786 100644
---
a/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java
+++
b/commons-jcs3-core/src/main/java/org/apache/commons/jcs3/utils/net/HostNameUtil.java
@@ -78,7 +78,7 @@ public class HostNameUtil
* interfaces, but the JDK <code>InetAddress.getLocalHost</code> method
does not specify the
* algorithm used to select the address returned under such circumstances,
and will often return
* the loopback address, which is not valid for network communication.
Details <a
- *
href="http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665037">here</a>.
+ *
href="https://bugs.sun.com/bugdatabase/view_bug.do?bug_id=4665037">here</a>.
* <p>
* This method will scan all IP addresses on all network interfaces on the
host machine to
* determine the IP address most likely to be the machine's LAN address.
If the machine has
@@ -91,7 +91,7 @@ public class HostNameUtil
* fall back to calling and returning the result of JDK method
* <code>InetAddress.getLocalHost</code>.
* <p>
- * <a href="http://issues.apache.org/jira/browse/JCS-40">JIR ISSUE
JCS-40</a>
+ * <a href="https://issues.apache.org/jira/browse/JCS-40">JIR ISSUE
JCS-40</a>
* <p>
* @return InetAddress
* @throws UnknownHostException If the LAN address of the machine cannot
be found.