craigmcc 2002/06/15 11:13:02
Modified: logging/src/java/org/apache/commons/logging Log.java
LogFactory.java LogSource.java
logging/src/java/org/apache/commons/logging/impl
LogFactoryImpl.java
Log:
Cosmetic changes in comments, to keep the JDK 1.4 standard JavaDoc
doclet from whining.
Revision Changes Path
1.13 +16 -16
jakarta-commons/logging/src/java/org/apache/commons/logging/Log.java
Index: Log.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/Log.java,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -r1.12 -r1.13
--- Log.java 31 Jan 2002 00:14:31 -0000 1.12
+++ Log.java 15 Jun 2002 18:13:01 -0000 1.13
@@ -174,7 +174,7 @@
/**
- * <p> Log a message with trace log level </p>
+ * <p> Log a message with trace log level. </p>
*
* @param message log this message
*/
@@ -182,7 +182,7 @@
/**
- * <p> Log an error with trace log level </p>
+ * <p> Log an error with trace log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -191,7 +191,7 @@
/**
- * <p> Log a message with debug log level </p>
+ * <p> Log a message with debug log level. </p>
*
* @param message log this message
*/
@@ -199,7 +199,7 @@
/**
- * <p> Log an error with debug log level </p>
+ * <p> Log an error with debug log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -208,7 +208,7 @@
/**
- * <p> Log a message with info log level </p>
+ * <p> Log a message with info log level. </p>
*
* @param message log this message
*/
@@ -216,7 +216,7 @@
/**
- * <p> Log an error with info log level </p>
+ * <p> Log an error with info log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -225,7 +225,7 @@
/**
- * <p> Log a message with warn log level </p>
+ * <p> Log a message with warn log level. </p>
*
* @param message log this message
*/
@@ -233,7 +233,7 @@
/**
- * <p> Log an error with warn log level </p>
+ * <p> Log an error with warn log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -242,7 +242,7 @@
/**
- * <p> Log a message with error log level </p>
+ * <p> Log a message with error log level. </p>
*
* @param message log this message
*/
@@ -250,7 +250,7 @@
/**
- * <p> Log an error with error log level </p>
+ * <p> Log an error with error log level. </p>
*
* @param message log this message
* @param t log this cause
@@ -259,7 +259,7 @@
/**
- * <p> Log a message with fatal log level </p>
+ * <p> Log a message with fatal log level. </p>
*
* @param message log this message
*/
@@ -267,7 +267,7 @@
/**
- * <p> Log an error with fatal log level </p>
+ * <p> Log an error with fatal log level. </p>
*
* @param message log this message
* @param t log this cause
1.9 +6 -6
jakarta-commons/logging/src/java/org/apache/commons/logging/LogFactory.java
Index: LogFactory.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/LogFactory.java,v
retrieving revision 1.8
retrieving revision 1.9
diff -u -r1.8 -r1.9
--- LogFactory.java 11 Jun 2002 22:29:14 -0000 1.8
+++ LogFactory.java 15 Jun 2002 18:13:01 -0000 1.9
@@ -234,7 +234,7 @@
/**
* <p>Construct (if necessary) and return a <code>LogFactory</code>
* instance, using the following ordered lookup procedure to determine
- * the name of the implementation class to be loaded:</p>
+ * the name of the implementation class to be loaded.</p>
* <ul>
* <li>The <code>org.apache.commons.logging.LogFactory</code> system
* property.</li>
@@ -550,4 +550,4 @@
}
}
-}
\ No newline at end of file
+}
1.15 +9 -9
jakarta-commons/logging/src/java/org/apache/commons/logging/LogSource.java
Index: LogSource.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/LogSource.java,v
retrieving revision 1.14
retrieving revision 1.15
diff -u -r1.14 -r1.15
--- LogSource.java 4 Mar 2002 00:41:37 -0000 1.14
+++ LogSource.java 15 Jun 2002 18:13:01 -0000 1.15
@@ -254,7 +254,7 @@
/**
* Create a new {@link Log} implementation, based
- * on the given <i>name</i>
+ * on the given <i>name</i>.
* <p>
* The specific {@link Log} implementation returned
* is determined by the value of the
@@ -268,11 +268,11 @@
* <p>
* When <tt>org.apache.commons.logging.log</tt> 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)
*/
1.12 +6 -6
jakarta-commons/logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java
Index: LogFactoryImpl.java
===================================================================
RCS file:
/home/cvs/jakarta-commons/logging/src/java/org/apache/commons/logging/impl/LogFactoryImpl.java,v
retrieving revision 1.11
retrieving revision 1.12
diff -u -r1.11 -r1.12
--- LogFactoryImpl.java 11 Jun 2002 22:47:21 -0000 1.11
+++ LogFactoryImpl.java 15 Jun 2002 18:13:02 -0000 1.12
@@ -76,7 +76,7 @@
/**
* <p>Concrete subclass of {@link LogFactory} that implements the
* following algorithm to dynamically select a logging implementation
- * class to instantiate a wrapper for:</p>
+ * class to instantiate a wrapper for.</p>
* <ul>
* <li>Use a factory configuration attribute named
* <code>org.apache.commons.logging.Log</code> to identify the
@@ -530,4 +530,4 @@
}
}
-}
\ No newline at end of file
+}
--
To unsubscribe, e-mail: <mailto:[EMAIL PROTECTED]>
For additional commands, e-mail: <mailto:[EMAIL PROTECTED]>