From c5b3edd5066f42535e336e630526fa6609381c05 Mon Sep 17 00:00:00 2001 From: Gary Gregory Date: Sat, 11 Nov 2023 16:15:49 -0500 Subject: [PATCH] Javadoc --- .../apache/commons/logging/LogConfigurationException.java | 8 ++++---- src/main/java/org/apache/commons/logging/LogFactory.java | 4 ++-- .../commons/logging/impl/Jdk13LumberjackLogger.java | 2 +- .../java/org/apache/commons/logging/impl/Jdk14Logger.java | 2 +- .../org/apache/commons/logging/impl/LogKitLogger.java | 2 +- .../java/org/apache/commons/logging/impl/SimpleLog.java | 2 +- 6 files changed, 10 insertions(+), 10 deletions(-) diff --git a/src/main/java/org/apache/commons/logging/LogConfigurationException.java b/src/main/java/org/apache/commons/logging/LogConfigurationException.java index c2fa099..d3034ac 100644 --- a/src/main/java/org/apache/commons/logging/LogConfigurationException.java +++ b/src/main/java/org/apache/commons/logging/LogConfigurationException.java @@ -33,13 +33,13 @@ public class LogConfigurationException extends RuntimeException { protected Throwable cause; /** - * Construct a new exception with {@code null} as its detail message. + * Constructs a new exception with {@code null} as its detail message. */ public LogConfigurationException() { } /** - * Construct a new exception with the specified detail message. + * Constructs a new exception with the specified detail message. * * @param message The detail message */ @@ -48,7 +48,7 @@ public class LogConfigurationException extends RuntimeException { } /** - * Construct a new exception with the specified detail message and cause. + * Constructs a new exception with the specified detail message and cause. * * @param message The detail message * @param cause The underlying cause @@ -59,7 +59,7 @@ public class LogConfigurationException extends RuntimeException { } /** - * Construct a new exception with the specified cause and a derived + * Constructs a new exception with the specified cause and a derived * detail message. * * @param cause The underlying cause diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java b/src/main/java/org/apache/commons/logging/LogFactory.java index 6d70d16..d8cb1f9 100644 --- a/src/main/java/org/apache/commons/logging/LogFactory.java +++ b/src/main/java/org/apache/commons/logging/LogFactory.java @@ -750,7 +750,7 @@ public abstract class LogFactory { } /** - * Construct (if necessary) and return a {@code LogFactory} instance, using the following ordered lookup procedure to determine the name of the + * Constructs (if necessary) and return a {@code LogFactory} instance, using the following ordered lookup procedure to determine the name of the * implementation class to be loaded. *