Add missing </p> tags. git-svn-id: https://svn.apache.org/repos/asf/logging/log4j/log4j2/trunk@1621036 13f79535-47bb-0310-9956-ffa450edef68
Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/6b086251 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/6b086251 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/6b086251 Branch: refs/heads/messaging-module Commit: 6b086251fb74670a65e56240009c2ce335598c90 Parents: a4665ae Author: mattsicker <mattsicker@unknown> Authored: Thu Aug 28 04:28:30 2014 +0000 Committer: mattsicker <mattsicker@unknown> Committed: Thu Aug 28 04:28:30 2014 +0000 ---------------------------------------------------------------------- .../java/org/apache/logging/log4j/core/util/ClockFactory.java | 3 +++ 1 file changed, 3 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/6b086251/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java ---------------------------------------------------------------------- diff --git a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java index 0b5ef76..d45086a 100644 --- a/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java +++ b/log4j-core/src/main/java/org/apache/logging/log4j/core/util/ClockFactory.java @@ -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 */
