You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@struts.apache.org by jo...@apache.org on 2015/05/27 20:57:43 UTC

[3/6] struts git commit: Fix missing import of LoggerFactory

Fix missing import of LoggerFactory


Project: http://git-wip-us.apache.org/repos/asf/struts/repo
Commit: http://git-wip-us.apache.org/repos/asf/struts/commit/5c8bb453
Tree: http://git-wip-us.apache.org/repos/asf/struts/tree/5c8bb453
Diff: http://git-wip-us.apache.org/repos/asf/struts/diff/5c8bb453

Branch: refs/heads/master
Commit: 5c8bb4538f3a2fa493348bc4e61c897353b8f3a9
Parents: 7fe3628
Author: Johannes Geppert <jo...@gmail.com>
Authored: Tue May 26 21:35:43 2015 +0200
Committer: Johannes Geppert <jo...@gmail.com>
Committed: Tue May 26 21:35:43 2015 +0200

----------------------------------------------------------------------
 core/src/test/java/org/apache/struts2/StrutsInternalTestCase.java | 1 +
 1 file changed, 1 insertion(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/struts/blob/5c8bb453/core/src/test/java/org/apache/struts2/StrutsInternalTestCase.java
----------------------------------------------------------------------
diff --git a/core/src/test/java/org/apache/struts2/StrutsInternalTestCase.java b/core/src/test/java/org/apache/struts2/StrutsInternalTestCase.java
index 81f575d..5ca475b 100644
--- a/core/src/test/java/org/apache/struts2/StrutsInternalTestCase.java
+++ b/core/src/test/java/org/apache/struts2/StrutsInternalTestCase.java
@@ -22,6 +22,7 @@
 package org.apache.struts2;
 
 import com.opensymphony.xwork2.XWorkTestCase;
+import com.opensymphony.xwork2.util.logging.LoggerFactory;
 import com.opensymphony.xwork2.util.logging.jdk.JdkLoggerFactory;
 import org.apache.struts2.dispatcher.Dispatcher;
 import org.apache.struts2.util.StrutsTestCaseHelper;