expand star imports

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/proxy/trunk@1580975 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/test/src/test/java/org/apache/commons/proxy2/stub/StubInterceptorBuilderTest.java b/test/src/test/java/org/apache/commons/proxy2/stub/StubInterceptorBuilderTest.java
index 618038b..401fa32 100644
--- a/test/src/test/java/org/apache/commons/proxy2/stub/StubInterceptorBuilderTest.java
+++ b/test/src/test/java/org/apache/commons/proxy2/stub/StubInterceptorBuilderTest.java
@@ -17,15 +17,16 @@
 
 package org.apache.commons.proxy2.stub;
 
-import org.apache.commons.proxy2.Interceptor;
-import org.apache.commons.proxy2.invoker.NullInvoker;
-import org.junit.Before;
-import org.junit.Test;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
 
 import java.lang.annotation.Retention;
 import java.lang.annotation.RetentionPolicy;
 
-import static org.junit.Assert.*;
+import org.apache.commons.proxy2.Interceptor;
+import org.apache.commons.proxy2.invoker.NullInvoker;
+import org.junit.Before;
+import org.junit.Test;
 
 public class StubInterceptorBuilderTest extends AbstractStubTestCase
 {