You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by gg...@apache.org on 2023/03/25 13:36:40 UTC

[commons-logging] branch master updated: Javadoc/Comments: Remove extra "whitespace"

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 19ced99  Javadoc/Comments: Remove extra "whitespace"
19ced99 is described below

commit 19ced996a0ed32acd9d656992ec3e0d0cf726303
Author: Gary Gregory <ga...@gmail.com>
AuthorDate: Sat Mar 25 09:36:35 2023 -0400

    Javadoc/Comments: Remove extra "whitespace"
---
 src/main/java/org/apache/commons/logging/Log.java                       | 1 -
 src/main/java/org/apache/commons/logging/LogConfigurationException.java | 1 -
 src/main/java/org/apache/commons/logging/LogFactory.java                | 1 -
 src/main/java/org/apache/commons/logging/LogSource.java                 | 1 -
 src/main/java/org/apache/commons/logging/impl/AvalonLogger.java         | 1 -
 src/main/java/org/apache/commons/logging/impl/Jdk14Logger.java          | 1 -
 src/main/java/org/apache/commons/logging/impl/Log4JLogger.java          | 1 -
 src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java       | 1 -
 src/main/java/org/apache/commons/logging/impl/LogKitLogger.java         | 1 -
 src/main/java/org/apache/commons/logging/impl/NoOpLog.java              | 1 -
 src/main/java/org/apache/commons/logging/impl/SimpleLog.java            | 1 -
 11 files changed, 11 deletions(-)

diff --git a/src/main/java/org/apache/commons/logging/Log.java b/src/main/java/org/apache/commons/logging/Log.java
index 5b6a804..fc96535 100644
--- a/src/main/java/org/apache/commons/logging/Log.java
+++ b/src/main/java/org/apache/commons/logging/Log.java
@@ -53,7 +53,6 @@ package org.apache.commons.logging;
  * Configuration of the underlying logging system will generally be done
  * external to the Logging APIs, through whatever mechanism is supported by
  * that system.
- *
  */
 public interface Log {
 
diff --git a/src/main/java/org/apache/commons/logging/LogConfigurationException.java b/src/main/java/org/apache/commons/logging/LogConfigurationException.java
index 1221648..438f786 100644
--- a/src/main/java/org/apache/commons/logging/LogConfigurationException.java
+++ b/src/main/java/org/apache/commons/logging/LogConfigurationException.java
@@ -21,7 +21,6 @@ package org.apache.commons.logging;
  * An exception that is thrown only if a suitable {@code LogFactory}
  * or {@code Log} instance cannot be created by the corresponding
  * factory methods.
- *
  */
 public class LogConfigurationException extends RuntimeException {
 
diff --git a/src/main/java/org/apache/commons/logging/LogFactory.java b/src/main/java/org/apache/commons/logging/LogFactory.java
index 733b836..82e31c2 100644
--- a/src/main/java/org/apache/commons/logging/LogFactory.java
+++ b/src/main/java/org/apache/commons/logging/LogFactory.java
@@ -40,7 +40,6 @@ import java.util.Properties;
  * <strong>IMPLEMENTATION NOTE</strong> - This implementation is heavily
  * based on the SAXParserFactory and DocumentBuilderFactory implementations
  * (corresponding to the JAXP pluggability APIs) found in Apache Xerces.
- *
  */
 public abstract class LogFactory {
     // Implementation note re AccessController usage
diff --git a/src/main/java/org/apache/commons/logging/LogSource.java b/src/main/java/org/apache/commons/logging/LogSource.java
index 2591afd..f36d5bf 100644
--- a/src/main/java/org/apache/commons/logging/LogSource.java
+++ b/src/main/java/org/apache/commons/logging/LogSource.java
@@ -49,7 +49,6 @@ import org.apache.commons.logging.impl.NoOpLog;
  *
  * @deprecated Use {@link LogFactory} instead - The default factory
  *  implementation performs exactly the same algorithm as this class did
- *
  */
 @Deprecated
 public class LogSource {
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 b95cdad..00e49f5 100644
--- a/src/main/java/org/apache/commons/logging/impl/AvalonLogger.java
+++ b/src/main/java/org/apache/commons/logging/impl/AvalonLogger.java
@@ -48,7 +48,6 @@ import org.apache.commons.logging.Log;
  * commons-logging, but this never actually worked (a NullPointerException would
  * be thrown as soon as the deserialized object was used), so removing this marker
  * is not considered to be an incompatible change.
- *
  */
 public class AvalonLogger implements Log {
 
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 c7dba4e..8447065 100644
--- a/src/main/java/org/apache/commons/logging/impl/Jdk14Logger.java
+++ b/src/main/java/org/apache/commons/logging/impl/Jdk14Logger.java
@@ -27,7 +27,6 @@ import org.apache.commons.logging.Log;
  * Implementation of the {@code org.apache.commons.logging.Log}
  * interface that wraps the standard JDK logging mechanisms that were
  * introduced in the Merlin release (JDK 1.4).
- *
  */
 public class Jdk14Logger implements Log, Serializable {
 
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 d41c405..a84084f 100644
--- a/src/main/java/org/apache/commons/logging/impl/Log4JLogger.java
+++ b/src/main/java/org/apache/commons/logging/impl/Log4JLogger.java
@@ -39,7 +39,6 @@ import org.apache.log4j.Level;
  * Log4J1.3 is expected to change Level so it no longer extends Priority, which is
  * a non-binary-compatible change. The class generated by compiling this code against
  * log4j 1.2 will therefore not run against log4j 1.3.
- *
  */
 public class Log4JLogger implements Log, Serializable {
 
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 190e889..e23f589 100644
--- a/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
+++ b/src/main/java/org/apache/commons/logging/impl/LogFactoryImpl.java
@@ -58,7 +58,6 @@ import org.apache.commons.logging.LogFactory;
  * This factory will remember previously created {@code Log} instances
  * for the same name, and will return them on repeated requests to the
  * {@code getInstance()} method.
- *
  */
 public class LogFactoryImpl extends LogFactory {
 
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 95c6c00..5216f4c 100644
--- a/src/main/java/org/apache/commons/logging/impl/LogKitLogger.java
+++ b/src/main/java/org/apache/commons/logging/impl/LogKitLogger.java
@@ -30,7 +30,6 @@ import org.apache.commons.logging.Log;
  * {@code LogKit} accepts only {@code String} messages.
  * Therefore, this implementation converts object messages into strings
  * by called their {@code toString()} method before logging them.
- *
  */
 public class LogKitLogger implements Log, Serializable {
 
diff --git a/src/main/java/org/apache/commons/logging/impl/NoOpLog.java b/src/main/java/org/apache/commons/logging/impl/NoOpLog.java
index 3f82c34..c8eaabe 100644
--- a/src/main/java/org/apache/commons/logging/impl/NoOpLog.java
+++ b/src/main/java/org/apache/commons/logging/impl/NoOpLog.java
@@ -23,7 +23,6 @@ import org.apache.commons.logging.Log;
 /**
  * Trivial implementation of Log that throws away all messages.  No
  * configurable system properties are supported.
- *
  */
 public class NoOpLog implements Log, Serializable {
 
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 ca47dc1..58cd927 100644
--- a/src/main/java/org/apache/commons/logging/impl/SimpleLog.java
+++ b/src/main/java/org/apache/commons/logging/impl/SimpleLog.java
@@ -68,7 +68,6 @@ import org.apache.commons.logging.LogConfigurationException;
  * above, this implementation also checks for a class loader resource named
  * {@code "simplelog.properties"}, and includes any matching definitions
  * from this resource (if it exists).
- *
  */
 public class SimpleLog implements Log, Serializable {