You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by ma...@apache.org on 2014/10/04 18:28:08 UTC

[06/15] git commit: Fix javadoc warnings.

Fix javadoc warnings.


Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo
Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/af2cf40f
Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/af2cf40f
Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/af2cf40f

Branch: refs/heads/master
Commit: af2cf40f89d3339b5c88d105b4b90525c0a706bd
Parents: 1ad3db8
Author: Matt Sicker <ma...@apache.org>
Authored: Sat Oct 4 01:02:30 2014 -0500
Committer: Matt Sicker <ma...@apache.org>
Committed: Sat Oct 4 09:38:50 2014 -0500

----------------------------------------------------------------------
 log4j-1.2-api/src/main/java/org/apache/log4j/NDC.java      | 8 ++++----
 log4j-1.2-api/src/main/java/org/apache/log4j/Priority.java | 4 ++--
 2 files changed, 6 insertions(+), 6 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/af2cf40f/log4j-1.2-api/src/main/java/org/apache/log4j/NDC.java
----------------------------------------------------------------------
diff --git a/log4j-1.2-api/src/main/java/org/apache/log4j/NDC.java b/log4j-1.2-api/src/main/java/org/apache/log4j/NDC.java
index afd3e13..1500630 100644
--- a/log4j-1.2-api/src/main/java/org/apache/log4j/NDC.java
+++ b/log4j-1.2-api/src/main/java/org/apache/log4j/NDC.java
@@ -91,8 +91,8 @@ public final class NDC {
 
 
     /**
-     * <font color="#FF4040"><b>Never use this method directly.</b></font>
-     * 
+     * <strong style="color:#FF4040">Never use this method directly.</strong>
+     *
      * @return The string value of the specified key.
      */
     public static String get() {
@@ -187,9 +187,9 @@ public final class NDC {
      * <pre>
      * void foo() {
      * &nbsp;  int depth = NDC.getDepth();
-     * 
+     *
      * &nbsp;  ... complex sequence of calls
-     * 
+     *
      * &nbsp;  NDC.setMaxDepth(depth);
      * }
      * </pre>

http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/af2cf40f/log4j-1.2-api/src/main/java/org/apache/log4j/Priority.java
----------------------------------------------------------------------
diff --git a/log4j-1.2-api/src/main/java/org/apache/log4j/Priority.java b/log4j-1.2-api/src/main/java/org/apache/log4j/Priority.java
index 10759d1..8f6eee9 100644
--- a/log4j-1.2-api/src/main/java/org/apache/log4j/Priority.java
+++ b/log4j-1.2-api/src/main/java/org/apache/log4j/Priority.java
@@ -17,8 +17,8 @@
 package org.apache.log4j;
 
 /**
- * <font color="#AA4444">Refrain from using this class directly, use
- * the {@link Level} class instead</font>.
+ * <em style="color:#A44">Refrain from using this class directly, use
+ * the {@link Level} class instead.</em>
  */
 public class Priority {