Author: mattsicker
Date: Thu Aug 28 04:28:30 2014
New Revision: 1621036
URL: http://svn.apache.org/r1621036
Log:
Add missing </p> tags.
Modified:
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java
Modified:
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java
URL:
http://svn.apache.org/viewvc/logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java?rev=1621036&r1=1621035&r2=1621036&view=diff
==============================================================================
---
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java
(original)
+++
logging/log4j/log4j2/trunk/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java
Thu Aug 28 04:28:30 2014
@@ -43,14 +43,17 @@ public final class ClockFactory {
* this method returns an instance of {@link CachedClock}. If system
* property {@code log4j.Clock=CoarseCachedClock} is specified, this
* method returns an instance of {@link CoarseCachedClock}.
+ * </p>
* <p>
* If another value is specified, this value is taken as the fully
qualified
* class name of a class that implements the {@code Clock} interface. An
* object of this class is instantiated and returned.
+ * </p>
* <p>
* If no value is specified, or if the specified value could not correctly
* be instantiated or did not implement the {@code Clock} interface, then
an
* instance of {@link SystemClock} is returned.
+ * </p>
*
* @return a {@code Clock} instance
*/