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 ba145fb Normalize getter Javadoc ba145fb is described below commit ba145fb114460977aaba61fbdf2ac0c707403439 Author: Gary Gregory <garydgreg...@gmail.com> AuthorDate: Tue Oct 31 06:51:30 2023 -0400 Normalize getter Javadoc --- src/main/java/org/apache/commons/logging/LogSource.java | 4 ++-- src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java | 2 +- src/main/java/org/apache/commons/logging/impl/SimpleLog.java | 2 +- 3 files changed, 4 insertions(+), 4 deletions(-) diff --git a/src/main/java/org/apache/commons/logging/LogSource.java b/src/main/java/org/apache/commons/logging/LogSource.java index 5159e48..1c90d8c 100644 --- a/src/main/java/org/apache/commons/logging/LogSource.java +++ b/src/main/java/org/apache/commons/logging/LogSource.java @@ -135,7 +135,7 @@ public class LogSource { // ------------------------------------------------------------ Constructor /** - * Get a {@code Log} instance by class. + * Gets a {@code Log} instance by class. * * @param clazz a Class. * @return a {@code Log} instance. @@ -147,7 +147,7 @@ public class LogSource { // ---------------------------------------------------------- Class Methods /** - * Get a {@code Log} instance by class name. + * Gets a {@code Log} instance by class name. * * @param name Class name. * @return a {@code Log} instance. 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 8399d22..df35319 100644 --- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java +++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java @@ -753,7 +753,7 @@ public class LogFactoryImpl extends LogFactory { } /** - * Get the setting for the user-configurable behavior specified by key. + * Gets the setting for the user-configurable behavior specified by key. * If nothing has explicitly been set, then return dflt. */ private boolean getBooleanConfiguration(final String key, final boolean dflt) { 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 399ce5d..d14807f 100644 --- a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java +++ b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java @@ -408,7 +408,7 @@ public class SimpleLog implements Log, Serializable { } /** - * Get logging level. + * Gets logging level. * * @return logging level. */