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-logging.git
The following commit(s) were added to refs/heads/master by this push: new bf1956a Javadoc bf1956a is described below commit bf1956afb86271ee6a5142f50577e86fbc435af3 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Sun Dec 17 14:40:52 2023 -0500 Javadoc --- .../org/apache/commons/logging/LogFactory.java | 2 +- .../logging/impl/Jdk13LumberjackLogger.java | 24 +++++++++++----------- .../apache/commons/logging/impl/Jdk14Logger.java | 24 +++++++++++----------- .../org/apache/commons/logging/impl/SimpleLog.java | 2 +- .../apache/commons/logging/impl/WeakHashtable.java | 2 +- .../apache/commons/logging/jdk14/TestHandler.java | 2 +- 6 files changed, 28 insertions(+), 28 deletions(-) diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java b/src/main/java/org/apache/commons/logging/LogFactory.java index d3f5e6e..b5ffacf 100644 --- a/src/main/java/org/apache/commons/logging/LogFactory.java +++ b/src/main/java/org/apache/commons/logging/LogFactory.java @@ -731,7 +731,7 @@ public abstract class LogFactory { * <li>The {@code org.apache.commons.logging.LogFactory} system property.</li> * <li>The JDK 1.3 Service Discovery mechanism</li> * <li>Use the properties file {@code commons-logging.properties} file, if found in the class path of this class. The configuration file is in standard - * {@code java.util.Properties} format and contains the fully qualified name of the implementation class with the key being the system property defined + * {@link java.util.Properties} format and contains the fully qualified name of the implementation class with the key being the system property defined * above.</li> * <li>Fall back to a default implementation class ({@code org.apache.commons.logging.impl.LogFactoryImpl}).</li> * </ul> diff --git a/src/main/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java b/src/main/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java index 19c9978..903cb84 100644 --- a/src/main/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java +++ b/src/main/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java @@ -82,7 +82,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINE}. + * Logs a message with {@link java.util.logging.Level#FINE}. * * @param message to log * @see org.apache.commons.logging.Log#debug(Object) @@ -93,7 +93,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINE}. + * Logs a message with {@link java.util.logging.Level#FINE}. * * @param message to log * @param exception log this cause @@ -105,7 +105,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @see org.apache.commons.logging.Log#error(Object) @@ -116,7 +116,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @param exception log this cause @@ -128,7 +128,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @see org.apache.commons.logging.Log#fatal(Object) @@ -139,7 +139,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @param exception log this cause @@ -196,7 +196,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.INFO}. + * Logs a message with {@link java.util.logging.Level#INFO}. * * @param message to log * @see org.apache.commons.logging.Log#info(Object) @@ -207,7 +207,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.INFO}. + * Logs a message with {@link java.util.logging.Level#INFO}. * * @param message to log * @param exception log this cause @@ -282,7 +282,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINEST}. + * Logs a message with {@link java.util.logging.Level#FINEST}. * * @param message to log * @see org.apache.commons.logging.Log#trace(Object) @@ -293,7 +293,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINEST}. + * Logs a message with {@link java.util.logging.Level#FINEST}. * * @param message to log * @param exception log this cause @@ -305,7 +305,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.WARNING}. + * Logs a message with {@link java.util.logging.Level#WARNING}. * * @param message to log * @see org.apache.commons.logging.Log#warn(Object) @@ -316,7 +316,7 @@ public class Jdk13LumberjackLogger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.WARNING}. + * Logs a message with {@link java.util.logging.Level#WARNING}. * * @param message to log * @param exception log this cause diff --git a/src/main/java/org/apache/commons/logging/impl/Jdk14Logger.java b/src/main/java/org/apache/commons/logging/impl/Jdk14Logger.java index 2dd5f16..2dffe20 100644 --- a/src/main/java/org/apache/commons/logging/impl/Jdk14Logger.java +++ b/src/main/java/org/apache/commons/logging/impl/Jdk14Logger.java @@ -62,7 +62,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINE}. + * Logs a message with {@link java.util.logging.Level#FINE}. * * @param message to log * @see org.apache.commons.logging.Log#debug(Object) @@ -73,7 +73,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINE}. + * Logs a message with {@link java.util.logging.Level#FINE}. * * @param message to log * @param exception log this cause @@ -85,7 +85,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @see org.apache.commons.logging.Log#error(Object) @@ -96,7 +96,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @param exception log this cause @@ -108,7 +108,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @see org.apache.commons.logging.Log#fatal(Object) @@ -119,7 +119,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.SEVERE}. + * Logs a message with {@link java.util.logging.Level#SEVERE}. * * @param message to log * @param exception log this cause @@ -143,7 +143,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.INFO}. + * Logs a message with {@link java.util.logging.Level#INFO}. * * @param message to log * @see org.apache.commons.logging.Log#info(Object) @@ -154,7 +154,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.INFO}. + * Logs a message with {@link java.util.logging.Level#INFO}. * * @param message to log * @param exception log this cause @@ -242,7 +242,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINEST}. + * Logs a message with {@link java.util.logging.Level#FINEST}. * * @param message to log * @see org.apache.commons.logging.Log#trace(Object) @@ -253,7 +253,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.FINEST}. + * Logs a message with {@link java.util.logging.Level#FINEST}. * * @param message to log * @param exception log this cause @@ -265,7 +265,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.WARNING}. + * Logs a message with {@link java.util.logging.Level#WARNING}. * * @param message to log * @see org.apache.commons.logging.Log#warn(Object) @@ -276,7 +276,7 @@ public class Jdk14Logger implements Log, Serializable { } /** - * Logs a message with {@code java.util.logging.Level.WARNING}. + * Logs a message with {@link java.util.logging.Level#WARNING}. * * @param message to log * @param exception log this cause diff --git a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java index 5194c04..511956d 100644 --- a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java +++ b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java @@ -57,7 +57,7 @@ import org.apache.commons.logging.LogConfigurationException; * <li>{@code org.apache.commons.logging.simplelog.dateTimeFormat} - * The date and time format to be used in the output messages. * The pattern describing the date and time format is the same that is - * used in {@code java.text.SimpleDateFormat}. If the format is not + * used in {@link java.text.SimpleDateFormat}. If the format is not * specified or is invalid, the default format is used. * The default format is {@code yyyy/MM/dd HH:mm:ss:SSS zzz}.</li> * </ul> diff --git a/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java b/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java index 37e839b..00a4753 100644 --- a/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java +++ b/src/main/java/org/apache/commons/logging/impl/WeakHashtable.java @@ -57,7 +57,7 @@ import java.util.Set; * Having this class used instead of {@code Hashtable} solves * certain issues related to dynamic reloading of applications in J2EE-style * environments. However this class requires Java 1.3 or later (due to its use - * of {@code java.lang.ref.WeakReference} and associates). + * of {@link java.lang.ref.WeakReference} and associates). * And by the way, this extends {@code Hashtable} rather than {@code HashMap} * for backwards compatibility reasons. See the documentation * for method {@code LogFactory.createFactoryStore} for more details. diff --git a/src/test/java/org/apache/commons/logging/jdk14/TestHandler.java b/src/test/java/org/apache/commons/logging/jdk14/TestHandler.java index a35e5dd..e4f72ae 100644 --- a/src/test/java/org/apache/commons/logging/jdk14/TestHandler.java +++ b/src/test/java/org/apache/commons/logging/jdk14/TestHandler.java @@ -23,7 +23,7 @@ import java.util.logging.Handler; import java.util.logging.LogRecord; /** - * <p>Test implementation of {@code java.util.logging.Handler}.</p> + * <p>Test implementation of {@link java.util.logging.Handler}.</p> */ public class TestHandler extends Handler {