You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by mb...@apache.org on 2014/03/24 19:00:04 UTC

svn commit: r1580945 - /commons/proper/proxy/trunk/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java

Author: mbenson
Date: Mon Mar 24 18:00:04 2014
New Revision: 1580945

URL: http://svn.apache.org/r1580945
Log:
expand star imports

Modified:
    commons/proper/proxy/trunk/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java

Modified: commons/proper/proxy/trunk/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/proxy/trunk/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java?rev=1580945&r1=1580944&r2=1580945&view=diff
==============================================================================
--- commons/proper/proxy/trunk/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java (original)
+++ commons/proper/proxy/trunk/core/src/test/java/org/apache/commons/proxy2/interceptor/SwitchInterceptorTest.java Mon Mar 24 18:00:04 2014
@@ -17,6 +17,11 @@
 
 package org.apache.commons.proxy2.interceptor;
 
+import static org.apache.commons.proxy2.interceptor.InterceptorUtils.constant;
+import static org.junit.Assert.assertEquals;
+
+import java.lang.reflect.Method;
+
 import org.apache.commons.proxy2.Invocation;
 import org.apache.commons.proxy2.interceptor.matcher.invocation.MethodNameMatcher;
 import org.apache.commons.proxy2.util.AbstractTestCase;
@@ -24,12 +29,6 @@ import org.apache.commons.proxy2.util.Ec
 import org.apache.commons.proxy2.util.MockInvocation;
 import org.junit.Test;
 
-import static org.junit.Assert.*;
-
-import java.lang.reflect.Method;
-
-import static org.apache.commons.proxy2.interceptor.InterceptorUtils.constant;
-
 public class SwitchInterceptorTest extends AbstractTestCase
 {
 //----------------------------------------------------------------------------------------------------------------------