1
0

Javadoc and comments: Use an HTTPS URL

This commit is contained in:
Gary Gregory
2024-01-14 10:59:48 -05:00
parent a18d7d7a21
commit fc62db25af
3 changed files with 7 additions and 7 deletions

View File

@@ -111,7 +111,7 @@ public abstract class LogFactory {
public static final String FACTORY_PROPERTIES = "commons-logging.properties"; public static final String FACTORY_PROPERTIES = "commons-logging.properties";
/** /**
* JDK 1.3+ <a href="http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html#Service%20Provider"> * JDK 1.3+ <a href="https://java.sun.com/j2se/1.3/docs/guide/jar/jar.html#Service%20Provider">
* 'Service Provider' specification</a>. * 'Service Provider' specification</a>.
*/ */
protected static final String SERVICE_ID = protected static final String SERVICE_ID =

View File

@@ -25,7 +25,7 @@ import org.apache.log.Logger;
/** /**
* Implementation of {@code org.apache.commons.logging.Log} * Implementation of {@code org.apache.commons.logging.Log}
* that wraps the <a href="http://avalon.apache.org/logkit/">avalon-logkit</a> * that wraps the <a href="https://avalon.apache.org/logkit/">avalon-logkit</a>
* logging system. Configuration of {@code LogKit} is left to the user. * logging system. Configuration of {@code LogKit} is left to the user.
* <p> * <p>
* {@code LogKit} accepts only {@code String} messages. * {@code LogKit} accepts only {@code String} messages.

View File

@@ -23,14 +23,14 @@
* can be used around a variety of different logging implementations, including * can be used around a variety of different logging implementations, including
* prebuilt support for the following:</p> * prebuilt support for the following:</p>
* <ul> * <ul>
* <li><a href="http://logging.apache.org/log4j/">Log4J</a> (version 1.2 or later) * <li><a href="https://logging.apache.org/log4j/">Log4J</a> (version 1.2 or later)
* from Apache's Logging project. Each named <a href="Log.html">Log</a> * from Apache's Logging project. Each named <a href="Log.html">Log</a>
* instance is connected to a corresponding Log4J Logger.</li> * instance is connected to a corresponding Log4J Logger.</li>
* <li><a href="http://java.sun.com/j2se/1.4/docs/guide/util/logging/index.html"> * <li><a href="https://java.sun.com/j2se/1.4/docs/guide/util/logging/index.html">
* JDK Logging API</a>, included in JDK 1.4 or later systems. Each named * JDK Logging API</a>, included in JDK 1.4 or later systems. Each named
* <a href="Log.html">Log</a> instance is connected to a corresponding * <a href="Log.html">Log</a> instance is connected to a corresponding
* <code>java.util.logging.Logger</code> instance.</li> * <code>java.util.logging.Logger</code> instance.</li>
* <li><a href="http://avalon.apache.org/logkit/">LogKit</a> from Apache's * <li><a href="https://avalon.apache.org/logkit/">LogKit</a> from Apache's
* Avalon project. Each named <a href="Log.html">Log</a> instance is * Avalon project. Each named <a href="Log.html">Log</a> instance is
* connected to a corresponding LogKit <code>Logger</code>.</li> * connected to a corresponding LogKit <code>Logger</code>.</li>
* <li><a href="impl/NoOpLog.html">NoOpLog</a> implementation that simply swallows * <li><a href="impl/NoOpLog.html">NoOpLog</a> implementation that simply swallows
@@ -78,8 +78,8 @@
* <li>Check for a system property named * <li>Check for a system property named
* <code>org.apache.commons.logging.LogFactory</code>.</li> * <code>org.apache.commons.logging.LogFactory</code>.</li>
* <li>Use the JDK 1.3 JAR Services Discovery mechanism (see * <li>Use the JDK 1.3 JAR Services Discovery mechanism (see
* <a href="http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html"> * <a href="https://java.sun.com/j2se/1.3/docs/guide/jar/jar.html">
* http://java.sun.com/j2se/1.3/docs/guide/jar/jar.html</a> for * https://java.sun.com/j2se/1.3/docs/guide/jar/jar.html</a> for
* more information) to look for a resource named * more information) to look for a resource named
* <code>META-INF/services/org.apache.commons.logging.LogFactory</code> * <code>META-INF/services/org.apache.commons.logging.LogFactory</code>
* whose first line is assumed to contain the desired class name.</li> * whose first line is assumed to contain the desired class name.</li>