You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@logging.apache.org by gg...@apache.org on 2015/06/22 19:18:39 UTC

logging-log4j2 git commit: Sort members.

Repository: logging-log4j2
Updated Branches:
  refs/heads/master 5d7ff06e8 -> 58d611012


Sort members.

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

Branch: refs/heads/master
Commit: 58d611012b2403f2696a6b3c8dc9dd54510a29dc
Parents: 5d7ff06
Author: ggregory <gg...@apache.org>
Authored: Mon Jun 22 10:18:36 2015 -0700
Committer: ggregory <gg...@apache.org>
Committed: Mon Jun 22 10:18:36 2015 -0700

----------------------------------------------------------------------
 .../src/test/java/org/apache/logging/slf4j/MarkerTest.java         | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/logging-log4j2/blob/58d61101/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
----------------------------------------------------------------------
diff --git a/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java b/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
index e006ef7..1897bd3 100644
--- a/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
+++ b/log4j-slf4j-impl/src/test/java/org/apache/logging/slf4j/MarkerTest.java
@@ -30,8 +30,8 @@ import static org.junit.Assert.*;
  */
 public class MarkerTest {
 
-    private static final String PARENT_MARKER_NAME = MarkerTest.class.getSimpleName() + "-PARENT";
     private static final String CHILD_MAKER_NAME = MarkerTest.class.getSimpleName() + "-TEST";
+    private static final String PARENT_MARKER_NAME = MarkerTest.class.getSimpleName() + "-PARENT";
 
     @Before
     @After