This is an automated email from the ASF dual-hosted git repository.

garydgregory 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 a65bdca  Javadoc
a65bdca is described below

commit a65bdca1e579093cabe1aca87f484270cc2c5b7b
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 11:22:36 2026 -0400

    Javadoc
---
 src/main/java/org/apache/commons/logging/LogFactory.java          | 2 +-
 src/main/java/org/apache/commons/logging/LogSource.java           | 4 ++--
 src/main/java/org/apache/commons/logging/impl/AvalonLogger.java   | 6 +++---
 src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java | 6 +++---
 4 files changed, 9 insertions(+), 9 deletions(-)

diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java 
b/src/main/java/org/apache/commons/logging/LogFactory.java
index 813fb57..448aa3f 100644
--- a/src/main/java/org/apache/commons/logging/LogFactory.java
+++ b/src/main/java/org/apache/commons/logging/LogFactory.java
@@ -1026,7 +1026,7 @@ public abstract class LogFactory {
      *   <li>VirtualMachineError</li>
      * </ul>
      *
-     * @param t the Throwable to check
+     * @param t The Throwable to check
      */
     protected static void handleThrowable(final Throwable t) {
         if (t instanceof ThreadDeath) {
diff --git a/src/main/java/org/apache/commons/logging/LogSource.java 
b/src/main/java/org/apache/commons/logging/LogSource.java
index f7fe666..66db6a9 100644
--- a/src/main/java/org/apache/commons/logging/LogSource.java
+++ b/src/main/java/org/apache/commons/logging/LogSource.java
@@ -125,7 +125,7 @@ public class LogSource {
     /**
      * Gets a {@code Log} instance by class.
      *
-     * @param clazz a Class.
+     * @param clazz A Class.
      * @return A {@code Log} instance.
      */
     static public Log getInstance(final Class<?> clazz) {
@@ -177,7 +177,7 @@ public class LogSource {
      * class is available in the {@link LogSource}'s classpath, or a 
Jdk14Logger if we
      * are on a JDK 1.4 or later system, or NoOpLog if neither of the above 
conditions is true.
      *
-     * @param name the log name (or category)
+     * @param name The log name (or category)
      * @return A new instance.
      */
     static public Log makeNewLogInstance(final String name) {
diff --git a/src/main/java/org/apache/commons/logging/impl/AvalonLogger.java 
b/src/main/java/org/apache/commons/logging/impl/AvalonLogger.java
index b53c7e9..cb08bef 100644
--- a/src/main/java/org/apache/commons/logging/impl/AvalonLogger.java
+++ b/src/main/java/org/apache/commons/logging/impl/AvalonLogger.java
@@ -62,7 +62,7 @@ public class AvalonLogger implements Log {
     /**
      * Sets the ancestral Avalon logger from which the delegating loggers will 
descend.
      *
-     * @param logger the default avalon logger,
+     * @param logger The default avalon logger,
      * in case there is no logger instance supplied in constructor
      */
     public static void setDefaultLogger(final Logger logger) {
@@ -76,7 +76,7 @@ public class AvalonLogger implements Log {
      * Constructs an {@code AvalonLogger} that outputs to the given
      * {@code Logger} instance.
      *
-     * @param logger the Avalon logger implementation to delegate to
+     * @param logger The Avalon logger implementation to delegate to
      */
     public AvalonLogger(final Logger logger) {
         this.logger = logger;
@@ -86,7 +86,7 @@ public class AvalonLogger implements Log {
      * Constructs an {@code AvalonLogger} that will log to a child
      * of the {@code Logger} set by calling {@link #setDefaultLogger}.
      *
-     * @param name the name of the avalon logger implementation to delegate to
+     * @param name The name of the avalon logger implementation to delegate to
      */
     public AvalonLogger(final String name) {
         Objects.requireNonNull(defaultLogger, "defaultLogger");
diff --git a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java 
b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
index 05c2fe2..3783ed8 100644
--- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
+++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
@@ -478,7 +478,7 @@ public class LogFactoryImpl extends LogFactory {
      * Attempts to create a Log instance for the given category name.
      * Follows the discovery process described in the class Javadoc.
      *
-     * @param logCategory the name of the log category
+     * @param logCategory The name of the log category
      * @throws LogConfigurationException if an error in discovery occurs,
      * or if no adapter at all can be instantiated
      */
@@ -1012,8 +1012,8 @@ public class LogFactoryImpl extends LogFactory {
      *
      * @param messageBuffer {@code StringBuffer} the message should be 
appended to,
      * not null
-     * @param name the (trimmed) name to be test against the candidate, not 
null
-     * @param candidate the candidate name (not null)
+     * @param name The (trimmed) name to be test against the candidate, not 
null
+     * @param candidate The candidate name (not null)
      */
     private void informUponSimilarName(final StringBuilder messageBuffer, 
final String name, final String candidate) {
         if (name.equals(candidate)) {

Reply via email to