You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by rp...@apache.org on 2015/09/24 10:51:19 UTC

[26/35] logging-log4j2 git commit: Checkstyle: Missing a Javadoc comment, utility class should hide constructor.

Checkstyle: Missing a Javadoc comment, utility class should hide
constructor.

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

Branch: refs/heads/master
Commit: 2539d035556b1c185cc58139d5a7ac181568b4dd
Parents: 6f69d24
Author: rpopma <rp...@apache.org>
Authored: Thu Sep 24 09:35:37 2015 +0200
Committer: rpopma <rp...@apache.org>
Committed: Thu Sep 24 09:35:37 2015 +0200

----------------------------------------------------------------------
 .../java/org/apache/logging/log4j/util/Chars.java    | 15 +++++++++++++++
 1 file changed, 15 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/2539d035/log4j-api/src/main/java/org/apache/logging/log4j/util/Chars.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/util/Chars.java b/log4j-api/src/main/java/org/apache/logging/log4j/util/Chars.java
index b2efb1c..75328d0 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/Chars.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/Chars.java
@@ -21,12 +21,27 @@ package org.apache.logging.log4j.util;
  */
 public class Chars {
 
+    /** Carriage Return. */
     public static final char CR = '\r';
+
+    /** Double Quote. */
     public static final char DQUOTE = '\"';
+
+    /** Equals '='. */
     public static final char EQ = '=';
+
+    /** Line Feed. */
     public static final char LF = '\n';
+
+    /** Single Quote [']. */
     public static final char QUOTE = '\'';
+
+    /** Space. */
     public static final char SPACE = ' ';
+
+    /** Tab. */
     public static final char TAB = '\t';
 
+    private Chars() {
+    }
 }