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