You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by mi...@apache.org on 2016/05/30 15:03:09 UTC

[04/12] logging-log4j2 git commit: Remove unused and undocumented method in Log4j-private class: org.apache.logging.log4j.util.Unbox.isBoxedPrimitive(StringBuilder).

Remove unused and undocumented method in Log4j-private class:
org.apache.logging.log4j.util.Unbox.isBoxedPrimitive(StringBuilder).

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

Branch: refs/heads/LOG4J2-1395
Commit: 719727a130ae6e6f8002ac2a08e7a06c5208700f
Parents: 434528a
Author: ggregory <gg...@apache.org>
Authored: Thu May 26 23:17:17 2016 -0700
Committer: ggregory <gg...@apache.org>
Committed: Thu May 26 23:17:17 2016 -0700

----------------------------------------------------------------------
 log4j-api/src/main/java/org/apache/logging/log4j/util/Unbox.java | 4 ----
 1 file changed, 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/719727a1/log4j-api/src/main/java/org/apache/logging/log4j/util/Unbox.java
----------------------------------------------------------------------
diff --git a/log4j-api/src/main/java/org/apache/logging/log4j/util/Unbox.java b/log4j-api/src/main/java/org/apache/logging/log4j/util/Unbox.java
index abf9038..41e403b 100644
--- a/log4j-api/src/main/java/org/apache/logging/log4j/util/Unbox.java
+++ b/log4j-api/src/main/java/org/apache/logging/log4j/util/Unbox.java
@@ -157,10 +157,6 @@ public class Unbox {
         return getSB().append(value);
     }
 
-    public static boolean isBoxedPrimitive(final StringBuilder text) {
-        return getState().isBoxedPrimitive(text);
-    }
-
     private static State getState() {
         State state = threadLocalState.get();
         if (state == null) {