From 08ee4c68c3608195e5fe128a31ed4456fe8f46c8 Mon Sep 17 00:00:00 2001
From: "Craig R. McClanahan"
Date: Sat, 15 Jun 2002 18:13:02 +0000
Subject: [PATCH] Cosmetic changes in comments, to keep the JDK 1.4 standard
JavaDoc doclet from whining.
git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/logging/trunk@138894 13f79535-47bb-0310-9956-ffa450edef68
---
src/java/org/apache/commons/logging/Log.java | 32 +++++++++----------
.../apache/commons/logging/LogFactory.java | 12 +++----
.../org/apache/commons/logging/LogSource.java | 18 +++++------
.../commons/logging/impl/LogFactoryImpl.java | 12 +++----
4 files changed, 37 insertions(+), 37 deletions(-)
diff --git a/src/java/org/apache/commons/logging/Log.java b/src/java/org/apache/commons/logging/Log.java
index b7c6f95..989a15b 100644
--- a/src/java/org/apache/commons/logging/Log.java
+++ b/src/java/org/apache/commons/logging/Log.java
@@ -1,7 +1,7 @@
/*
- * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/Log.java,v 1.12 2002/01/31 00:14:31 sanders Exp $
- * $Revision: 1.12 $
- * $Date: 2002/01/31 00:14:31 $
+ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/Log.java,v 1.13 2002/06/15 18:13:01 craigmcc Exp $
+ * $Revision: 1.13 $
+ * $Date: 2002/06/15 18:13:01 $
*
* ====================================================================
*
@@ -102,7 +102,7 @@ package org.apache.commons.logging;
*
* @author Scott Sanders
* @author Rod Waldhoff
- * @version $Id: Log.java,v 1.12 2002/01/31 00:14:31 sanders Exp $
+ * @version $Id: Log.java,v 1.13 2002/06/15 18:13:01 craigmcc Exp $
*/
public interface Log {
@@ -174,7 +174,7 @@ public interface Log {
/**
- * Log a message with trace log level
+ * Log a message with trace log level.
*
* @param message log this message
*/
@@ -182,7 +182,7 @@ public interface Log {
/**
- * Log an error with trace log level
+ * Log an error with trace log level.
*
* @param message log this message
* @param t log this cause
@@ -191,7 +191,7 @@ public interface Log {
/**
- * Log a message with debug log level
+ * Log a message with debug log level.
*
* @param message log this message
*/
@@ -199,7 +199,7 @@ public interface Log {
/**
- * Log an error with debug log level
+ * Log an error with debug log level.
*
* @param message log this message
* @param t log this cause
@@ -208,7 +208,7 @@ public interface Log {
/**
- * Log a message with info log level
+ * Log a message with info log level.
*
* @param message log this message
*/
@@ -216,7 +216,7 @@ public interface Log {
/**
- * Log an error with info log level
+ * Log an error with info log level.
*
* @param message log this message
* @param t log this cause
@@ -225,7 +225,7 @@ public interface Log {
/**
- * Log a message with warn log level
+ * Log a message with warn log level.
*
* @param message log this message
*/
@@ -233,7 +233,7 @@ public interface Log {
/**
- * Log an error with warn log level
+ * Log an error with warn log level.
*
* @param message log this message
* @param t log this cause
@@ -242,7 +242,7 @@ public interface Log {
/**
- * Log a message with error log level
+ * Log a message with error log level.
*
* @param message log this message
*/
@@ -250,7 +250,7 @@ public interface Log {
/**
- * Log an error with error log level
+ * Log an error with error log level.
*
* @param message log this message
* @param t log this cause
@@ -259,7 +259,7 @@ public interface Log {
/**
- * Log a message with fatal log level
+ * Log a message with fatal log level.
*
* @param message log this message
*/
@@ -267,7 +267,7 @@ public interface Log {
/**
- * Log an error with fatal log level
+ * Log an error with fatal log level.
*
* @param message log this message
* @param t log this cause
diff --git a/src/java/org/apache/commons/logging/LogFactory.java b/src/java/org/apache/commons/logging/LogFactory.java
index 9179647..82cc5d0 100644
--- a/src/java/org/apache/commons/logging/LogFactory.java
+++ b/src/java/org/apache/commons/logging/LogFactory.java
@@ -1,7 +1,7 @@
/*
- * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.8 2002/06/11 22:29:14 rsitze Exp $
- * $Revision: 1.8 $
- * $Date: 2002/06/11 22:29:14 $
+ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogFactory.java,v 1.9 2002/06/15 18:13:01 craigmcc Exp $
+ * $Revision: 1.9 $
+ * $Date: 2002/06/15 18:13:01 $
*
* ====================================================================
*
@@ -85,7 +85,7 @@ import java.lang.SecurityException;
*
* @author Craig R. McClanahan
* @author Costin Manolache
- * @version $Revision: 1.8 $ $Date: 2002/06/11 22:29:14 $
+ * @version $Revision: 1.9 $ $Date: 2002/06/15 18:13:01 $
*/
public abstract class LogFactory {
@@ -234,7 +234,7 @@ public abstract class LogFactory {
/**
* Construct (if necessary) and return a LogFactory
* instance, using the following ordered lookup procedure to determine
- * the name of the implementation class to be loaded:
+ * the name of the implementation class to be loaded.
*
* - The
org.apache.commons.logging.LogFactory system
* property.
@@ -550,4 +550,4 @@ public abstract class LogFactory {
}
}
-}
\ No newline at end of file
+}
diff --git a/src/java/org/apache/commons/logging/LogSource.java b/src/java/org/apache/commons/logging/LogSource.java
index 03a143f..5e6b176 100644
--- a/src/java/org/apache/commons/logging/LogSource.java
+++ b/src/java/org/apache/commons/logging/LogSource.java
@@ -1,7 +1,7 @@
/*
- * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogSource.java,v 1.14 2002/03/04 00:41:37 craigmcc Exp $
- * $Revision: 1.14 $
- * $Date: 2002/03/04 00:41:37 $
+ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/LogSource.java,v 1.15 2002/06/15 18:13:01 craigmcc Exp $
+ * $Revision: 1.15 $
+ * $Date: 2002/06/15 18:13:01 $
*
* ====================================================================
*
@@ -97,7 +97,7 @@ import org.apache.commons.logging.impl.NoOpLog;
* implementation performs exactly the same algorithm as this class did
*
* @author Rod Waldhoff
- * @version $Id: LogSource.java,v 1.14 2002/03/04 00:41:37 craigmcc Exp $
+ * @version $Id: LogSource.java,v 1.15 2002/06/15 18:13:01 craigmcc Exp $
*/
public class LogSource {
@@ -254,7 +254,7 @@ public class LogSource {
/**
* Create a new {@link Log} implementation, based
- * on the given name
+ * on the given name.
*
* The specific {@link Log} implementation returned
* is determined by the value of the
@@ -268,11 +268,11 @@ public class LogSource {
*
* When org.apache.commons.logging.log is not set,
* or when no corresponding class can be found,
- * this method will return a {@link Log4JCategoryLog}
- * if the log4j {@link org.apache.log4j.Category} class is
+ * this method will return a Log4JCategoryLog
+ * if the log4j Category class is
* available in the {@link LogSource}'s classpath, or a
- * {@link Jdk14Logger} if we are on a JDK 1.4 or later system, or
- * a {@link NoOpLog} if neither of the above conditions is true.
+ * 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)
*/
diff --git a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
index 2458b14..269b90a 100644
--- a/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
+++ b/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
@@ -1,7 +1,7 @@
/*
- * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v 1.11 2002/06/11 22:47:21 rsitze Exp $
- * $Revision: 1.11 $
- * $Date: 2002/06/11 22:47:21 $
+ * $Header: /home/jerenkrantz/tmp/commons/commons-convert/cvs/home/cvs/jakarta-commons//logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v 1.12 2002/06/15 18:13:02 craigmcc Exp $
+ * $Revision: 1.12 $
+ * $Date: 2002/06/15 18:13:02 $
*
* ====================================================================
*
@@ -76,7 +76,7 @@ import org.apache.commons.logging.LogSource;
/**
*
Concrete subclass of {@link LogFactory} that implements the
* following algorithm to dynamically select a logging implementation
- * class to instantiate a wrapper for:
+ * class to instantiate a wrapper for.
*
* - Use a factory configuration attribute named
*
org.apache.commons.logging.Log to identify the
@@ -104,7 +104,7 @@ import org.apache.commons.logging.LogSource;
*
* @author Rod Waldhoff
* @author Craig R. McClanahan
- * @version $Revision: 1.11 $ $Date: 2002/06/11 22:47:21 $
+ * @version $Revision: 1.12 $ $Date: 2002/06/15 18:13:02 $
*/
public class LogFactoryImpl extends LogFactory {
@@ -530,4 +530,4 @@ public class LogFactoryImpl extends LogFactory {
}
}
-}
\ No newline at end of file
+}