jvanzyl 00/12/19 22:42:04
Modified: src/java/org/apache/velocity/test IntrospectorTestCase.java
Log:
- cleaning up import statments
Revision Changes Path
1.4 +4 -3
jakarta-velocity/src/java/org/apache/velocity/test/IntrospectorTestCase.java
Index: IntrospectorTestCase.java
===================================================================
RCS file:
/home/cvs/jakarta-velocity/src/java/org/apache/velocity/test/IntrospectorTestCase.java,v
retrieving revision 1.3
retrieving revision 1.4
diff -u -r1.3 -r1.4
--- IntrospectorTestCase.java 2000/11/16 01:51:25 1.3
+++ IntrospectorTestCase.java 2000/12/20 06:42:03 1.4
@@ -54,13 +54,14 @@
* <http://www.apache.org/>.
*/
-import junit.framework.*;
-
import java.util.ArrayList;
+
import java.lang.reflect.Method;
import org.apache.velocity.util.introspection.Introspector;
+import junit.framework.TestSuite;
+
/**
* Test case for the Velocity Introspector which uses
* the Java Reflection API to determine the correct
@@ -71,7 +72,7 @@
* for now.
*
* @author <a href="mailto:[EMAIL PROTECTED]">Jason van Zyl</a>
- * @version $Id: IntrospectorTestCase.java,v 1.3 2000/11/16 01:51:25 jvanzyl Exp $
+ * @version $Id: IntrospectorTestCase.java,v 1.4 2000/12/20 06:42:03 jvanzyl Exp $
*/
public class IntrospectorTestCase extends BaseTestCase
{