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 cb32a63 Javadoc
cb32a63 is described below
commit cb32a630e353fbcb2e122a8230ae1ba76f677e3e
Author: Gary Gregory <[email protected]>
AuthorDate: Sat Jul 11 08:47:27 2026 -0400
Javadoc
---
src/main/java/org/apache/commons/logging/LogFactory.java | 10 +++++-----
.../org/apache/commons/logging/impl/Jdk13LumberjackLogger.java | 2 +-
src/main/java/org/apache/commons/logging/impl/Log4JLogger.java | 2 +-
.../java/org/apache/commons/logging/impl/LogFactoryImpl.java | 10 +++++-----
.../java/org/apache/commons/logging/impl/LogKitLogger.java | 2 +-
5 files changed, 13 insertions(+), 13 deletions(-)
diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java
b/src/main/java/org/apache/commons/logging/LogFactory.java
index 41913b2..aa3253c 100644
--- a/src/main/java/org/apache/commons/logging/LogFactory.java
+++ b/src/main/java/org/apache/commons/logging/LogFactory.java
@@ -490,7 +490,7 @@ public abstract class LogFactory {
*
* @throws LogConfigurationException if a suitable class loader
* cannot be identified.
- * @return the thread's context class loader or {@code null} if the Java
security
+ * @return The thread's context class loader or {@code null} if the Java
security
* policy forbids access to the context class loader from one of the
classes
* in the current call stack.
* @since 1.1
@@ -522,7 +522,7 @@ public abstract class LogFactory {
* in JDK1.1, and in embedded systems where jcl-using code is
* placed in the bootclasspath.
*
- * @return the factory associated with the specified class loader if
+ * @return The factory associated with the specified class loader if
* one has previously been created, or null if this is the first time
* we have seen this particular class loader.
*/
@@ -673,7 +673,7 @@ public abstract class LogFactory {
* support for that.
* </p>
*
- * @return the context class loader associated with the current thread,
+ * @return The context class loader associated with the current thread,
* or null if security doesn't allow it.
* @throws LogConfigurationException if there was some weird error while
* attempting to get the context class loader.
@@ -691,7 +691,7 @@ public abstract class LogFactory {
* the entire call stack must have the privilege before the call is
* allowed.
*
- * @return the context class loader associated with the current thread,
+ * @return The context class loader associated with the current thread,
* or null if security doesn't allow it.
* @throws LogConfigurationException if there was some weird error while
* attempting to get the context class loader.
@@ -1529,7 +1529,7 @@ public abstract class LogFactory {
* or {@code null} if there is no such attribute.
*
* @param name Name of the attribute to return
- * @return the configuration attribute with the specified name.
+ * @return The configuration attribute with the specified name.
*/
public abstract Object getAttribute(String name);
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 0012c0e..e7cf749 100644
--- a/src/main/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java
+++ b/src/main/java/org/apache/commons/logging/impl/Jdk13LumberjackLogger.java
@@ -186,7 +186,7 @@ public class Jdk13LumberjackLogger implements Log,
Serializable {
/**
* Gets the native Logger instance we are using.
*
- * @return the native Logger instance we are using.
+ * @return The native Logger instance we are using.
*/
public Logger getLogger() {
if (logger == null) {
diff --git a/src/main/java/org/apache/commons/logging/impl/Log4JLogger.java
b/src/main/java/org/apache/commons/logging/impl/Log4JLogger.java
index 2250eb7..ea01e69 100644
--- a/src/main/java/org/apache/commons/logging/impl/Log4JLogger.java
+++ b/src/main/java/org/apache/commons/logging/impl/Log4JLogger.java
@@ -194,7 +194,7 @@ public class Log4JLogger implements Log, Serializable {
/**
* Gets the native Logger instance we are using.
*
- * @return the native Logger instance we are using.
+ * @return The native Logger instance we are using.
*/
public Logger getLogger() {
Logger result = logger;
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 cda6c97..0a252b3 100644
--- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
+++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
@@ -177,7 +177,7 @@ public class LogFactoryImpl extends LogFactory {
* Gets the context ClassLoader.
* This method is a workaround for a Java 1.2 compiler bug.
*
- * @return the context ClassLoader
+ * @return The context ClassLoader
* @since 1.1
*/
protected static ClassLoader getContextClassLoader() throws
LogConfigurationException {
@@ -193,7 +193,7 @@ public class LogFactoryImpl extends LogFactory {
* the entire call stack must have the privilege before the call is
* allowed.
*
- * @return the context class loader associated with the current thread,
+ * @return The context class loader associated with the current thread,
* or null if security doesn't allow it.
*
* @throws LogConfigurationException if there was some weird error while
@@ -705,7 +705,7 @@ public class LogFactoryImpl extends LogFactory {
* file.
* </p>
*
- * @return the value associated with the property, or null.
+ * @return The value associated with the property, or null.
*/
private String getConfigurationValue(final String property) {
if (isDiagnosticsEnabled()) {
@@ -785,7 +785,7 @@ public class LogFactoryImpl extends LogFactory {
/**
* Gets the fully qualified Java class name of the {@link Log}
implementation we will be using.
*
- * @return the fully qualified Java class name of the {@link Log}
implementation we will be using.
+ * @return The fully qualified Java class name of the {@link Log}
implementation we will be using.
* @deprecated Never invoked by this class; subclasses should not assume
it will be.
*/
@Deprecated
@@ -803,7 +803,7 @@ public class LogFactoryImpl extends LogFactory {
* {@code Constructor} instance will ultimately be derived in all
circumstances.
* </p>
*
- * @return the {@code Constructor} that can be called to instantiate new
{@link org.apache.commons.logging.Log} instances.
+ * @return The {@code Constructor} that can be called to instantiate new
{@link org.apache.commons.logging.Log} instances.
* @throws LogConfigurationException if a suitable constructor cannot be
returned
* @deprecated Never invoked by this class; subclasses should not assume
it will be.
*/
diff --git a/src/main/java/org/apache/commons/logging/impl/LogKitLogger.java
b/src/main/java/org/apache/commons/logging/impl/LogKitLogger.java
index 0a576b5..b51d7ac 100644
--- a/src/main/java/org/apache/commons/logging/impl/LogKitLogger.java
+++ b/src/main/java/org/apache/commons/logging/impl/LogKitLogger.java
@@ -142,7 +142,7 @@ public class LogKitLogger implements Log, Serializable {
/**
* Gets the underlying Logger we are using.
*
- * @return the underlying Logger we are using.
+ * @return The underlying Logger we are using.
*/
public Logger getLogger() {
Logger result = logger;