hgomez 2005/04/15 03:22:31
Modified: src/test/org/apache/xmlrpc ClientServerRpcTest.java CommonsXmlRpcTransportTest.java XmlWriterTest.java XmlRpcTransportTest.java AsyncBenchmark.java LiteXmlRpcTransportTest.java Log: Clean imports Revision Changes Path 1.18 +2 -6 ws-xmlrpc/src/test/org/apache/xmlrpc/ClientServerRpcTest.java Index: ClientServerRpcTest.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/test/org/apache/xmlrpc/ClientServerRpcTest.java,v retrieving revision 1.17 retrieving revision 1.18 diff -u -r1.17 -r1.18 --- ClientServerRpcTest.java 11 Apr 2005 14:31:31 -0000 1.17 +++ ClientServerRpcTest.java 15 Apr 2005 10:22:31 -0000 1.18 @@ -55,17 +55,13 @@ */ import java.io.ByteArrayInputStream; -import java.io.ByteArrayOutputStream; -import java.io.IOException; import java.io.InputStream; -import java.io.OutputStream; import java.net.InetAddress; import java.net.UnknownHostException; -import java.util.Vector; import java.util.Hashtable; +import java.util.Vector; import junit.framework.Test; -import junit.framework.TestCase; import junit.framework.TestSuite; /** 1.2 +4 -5 ws-xmlrpc/src/test/org/apache/xmlrpc/CommonsXmlRpcTransportTest.java Index: CommonsXmlRpcTransportTest.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/test/org/apache/xmlrpc/CommonsXmlRpcTransportTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- CommonsXmlRpcTransportTest.java 16 Mar 2003 06:56:54 -0000 1.1 +++ CommonsXmlRpcTransportTest.java 15 Apr 2005 10:22:31 -0000 1.2 @@ -54,11 +54,10 @@ * <http://www.apache.org/>. */ -import java.io.InputStream; -import java.io.IOException; -import java.net.MalformedURLException; import java.net.URL; -import junit.framework.*; + +import junit.framework.Test; +import junit.framework.TestSuite; /** * Tests the CommonsXmlRpcTransport implementation. 1.5 +1 -3 ws-xmlrpc/src/test/org/apache/xmlrpc/XmlWriterTest.java Index: XmlWriterTest.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/test/org/apache/xmlrpc/XmlWriterTest.java,v retrieving revision 1.4 retrieving revision 1.5 diff -u -r1.4 -r1.5 --- XmlWriterTest.java 17 Jun 2004 01:40:14 -0000 1.4 +++ XmlWriterTest.java 15 Apr 2005 10:22:31 -0000 1.5 @@ -55,8 +55,6 @@ */ import java.io.ByteArrayOutputStream; -import java.io.IOException; -import java.io.OutputStream; import junit.framework.Test; import junit.framework.TestCase; 1.3 +2 -3 ws-xmlrpc/src/test/org/apache/xmlrpc/XmlRpcTransportTest.java Index: XmlRpcTransportTest.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/test/org/apache/xmlrpc/XmlRpcTransportTest.java,v retrieving revision 1.2 retrieving revision 1.3 diff -u -r1.2 -r1.3 --- XmlRpcTransportTest.java 1 May 2003 16:53:16 -0000 1.2 +++ XmlRpcTransportTest.java 15 Apr 2005 10:22:31 -0000 1.3 @@ -55,11 +55,10 @@ */ import java.io.BufferedInputStream; -import java.io.InputStream; import java.io.IOException; +import java.io.InputStream; import java.net.MalformedURLException; import java.net.URL; -import junit.framework.*; /** * Abstract Test class to be extended by the tests for each Transport. 1.2 +1 -2 ws-xmlrpc/src/test/org/apache/xmlrpc/AsyncBenchmark.java Index: AsyncBenchmark.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/test/org/apache/xmlrpc/AsyncBenchmark.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- AsyncBenchmark.java 20 Jul 2001 19:38:20 -0000 1.1 +++ AsyncBenchmark.java 15 Apr 2005 10:22:31 -0000 1.2 @@ -55,9 +55,8 @@ * <http://www.apache.org/>. */ -import java.util.*; -import java.io.IOException; import java.net.URL; +import java.util.Vector; public class AsyncBenchmark implements Runnable 1.2 +4 -5 ws-xmlrpc/src/test/org/apache/xmlrpc/LiteXmlRpcTransportTest.java Index: LiteXmlRpcTransportTest.java =================================================================== RCS file: /home/cvs/ws-xmlrpc/src/test/org/apache/xmlrpc/LiteXmlRpcTransportTest.java,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- LiteXmlRpcTransportTest.java 26 Jan 2003 02:31:08 -0000 1.1 +++ LiteXmlRpcTransportTest.java 15 Apr 2005 10:22:31 -0000 1.2 @@ -54,11 +54,10 @@ * <http://www.apache.org/>. */ -import java.io.InputStream; -import java.io.IOException; -import java.net.MalformedURLException; import java.net.URL; -import junit.framework.*; + +import junit.framework.Test; +import junit.framework.TestSuite; /** * Tests the LiteXmlRpcTransport implementation.