Repository: logging-log4j2 Updated Branches: refs/heads/master eff4780ca -> a14430990
Consider this class private. About to use here and there, especially the quote and double quote. Project: http://git-wip-us.apache.org/repos/asf/logging-log4j2/repo Commit: http://git-wip-us.apache.org/repos/asf/logging-log4j2/commit/a1443099 Tree: http://git-wip-us.apache.org/repos/asf/logging-log4j2/tree/a1443099 Diff: http://git-wip-us.apache.org/repos/asf/logging-log4j2/diff/a1443099 Branch: refs/heads/master Commit: a1443099031496fe14c4c2cadebd62993113c044 Parents: eff4780 Author: Gary Gregory <[email protected]> Authored: Thu Mar 5 07:53:13 2015 -0800 Committer: Gary Gregory <[email protected]> Committed: Thu Mar 5 07:53:13 2015 -0800 ---------------------------------------------------------------------- .../org/apache/logging/log4j/util/Chars.java | 29 ++++++++++++++++++++ 1 file changed, 29 insertions(+) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/a1443099/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 new file mode 100644 index 0000000..4f52fe4 --- /dev/null +++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/Chars.java @@ -0,0 +1,29 @@ +/* + * Licensed to the Apache Software Foundation (ASF) under one or more + * contributor license agreements. See the NOTICE file distributed with + * this work for additional information regarding copyright ownership. + * The ASF licenses this file to You under the Apache license, Version 2.0 + * (the "License"); you may not use this file except in compliance with + * the License. You may obtain a copy of the License at + * + * http://www.apache.org/licenses/LICENSE-2.0 + * + * Unless required by applicable law or agreed to in writing, software + * distributed under the License is distributed on an "AS IS" BASIS, + * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + * See the license for the specific language governing permissions and + * limitations under the license. + */ +package org.apache.logging.log4j.util; + +/** + * <em>Consider this class private.</em> + */ +public class Chars { + + public static final char SPACE = ' '; + public static final char TAB = '\t'; + public static final char QUOTE = '\''; + public static final char DQUOTE = '\"'; + +}
