Author: markt
Date: Mon Oct 13 14:33:05 2014
New Revision: 1631418
URL: http://svn.apache.org/r1631418
Log:
Fix Java 8 Javadoc errors in org.apache.juli
Modified:
tomcat/trunk/java/org/apache/juli/logging/Log.java
tomcat/trunk/java/org/apache/juli/logging/LogFactory.java
Modified: tomcat/trunk/java/org/apache/juli/logging/Log.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/juli/logging/Log.java?rev=1631418&r1=1631417&r2=1631418&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/juli/logging/Log.java (original)
+++ tomcat/trunk/java/org/apache/juli/logging/Log.java Mon Oct 13 14:33:05 2014
@@ -24,7 +24,7 @@ package org.apache.juli.logging;
* this interface must have a constructor that takes a single String
* parameter representing the "name" of this Log.</p>
*
- * <p> The six logging levels used by <code>Log</code> are (in order):
+ * <p> The six logging levels used by <code>Log</code> are (in order):</p>
* <ol>
* <li>trace (the least serious)</li>
* <li>debug</li>
@@ -33,7 +33,7 @@ package org.apache.juli.logging;
* <li>error</li>
* <li>fatal (the most serious)</li>
* </ol>
- * The mapping of these log levels to the concepts used by the underlying
+ * <p>The mapping of these log levels to the concepts used by the underlying
* logging system is implementation dependent.
* The implementation should ensure, though, that this ordering behaves
* as expected.</p>
@@ -44,12 +44,12 @@ package org.apache.juli.logging;
* to be logged).</p>
*
* <p> For example,
- * <code><pre>
+ * <code>
* if (log.isDebugEnabled()) {
* ... do something expensive ...
* log.debug(theResult);
* }
- * </pre></code>
+ * </code>
* </p>
*
* <p>Configuration of the underlying logging system will generally be done
Modified: tomcat/trunk/java/org/apache/juli/logging/LogFactory.java
URL:
http://svn.apache.org/viewvc/tomcat/trunk/java/org/apache/juli/logging/LogFactory.java?rev=1631418&r1=1631417&r2=1631418&view=diff
==============================================================================
--- tomcat/trunk/java/org/apache/juli/logging/LogFactory.java (original)
+++ tomcat/trunk/java/org/apache/juli/logging/LogFactory.java Mon Oct 13
14:33:05 2014
@@ -29,7 +29,7 @@ import java.util.logging.LogManager;
*
* Why? It is an attempt to strike a balance between simpler code (no
discovery)
* and providing flexibility - particularly for those projects that embed
Tomcat
- * or some of Tomcat's components - is an alternative logging
+ * or some of Tomcat's components - is an alternative logging
* implementationnis desired.
*
* Note that this implementation is not just a wrapper around JDK logging (like
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]