[Httpunit-commit] CVS: httpunit/src/com/meterware/servletunit ServletRunner.java,1.14,1.15
Brought to you by:
russgold
From: Russell G. <rus...@us...> - 2002-05-20 16:00:46
|
Update of /cvsroot/httpunit/httpunit/src/com/meterware/servletunit In directory usw-pr-cvs1:/tmp/cvs-serv31967/src/com/meterware/servletunit Modified Files: ServletRunner.java Log Message: Removed unused fields, methods, and imports Index: ServletRunner.java =================================================================== RCS file: /cvsroot/httpunit/httpunit/src/com/meterware/servletunit/ServletRunner.java,v retrieving revision 1.14 retrieving revision 1.15 diff -u -r1.14 -r1.15 --- ServletRunner.java 8 May 2002 19:20:59 -0000 1.14 +++ ServletRunner.java 20 May 2002 16:00:44 -0000 1.15 @@ -19,15 +19,9 @@ * DEALINGS IN THE SOFTWARE. * *******************************************************************************************************************/ -import com.meterware.httpunit.WebResponse; -import com.meterware.httpunit.WebRequest; -import com.meterware.httpunit.HttpNotFoundException; -import com.meterware.httpunit.HttpInternalErrorException; -import com.meterware.httpunit.HttpUnitUtils; - import java.io.File; -import java.io.InputStream; import java.io.IOException; +import java.io.InputStream; import java.net.MalformedURLException; import java.net.URL; import java.util.Dictionary; @@ -36,9 +30,12 @@ import javax.servlet.ServletException; import javax.servlet.http.Cookie; -import org.xml.sax.SAXException; +import com.meterware.httpunit.HttpUnitUtils; +import com.meterware.httpunit.WebRequest; +import com.meterware.httpunit.WebResponse; + import org.xml.sax.InputSource; -import org.w3c.dom.Document; +import org.xml.sax.SAXException; /** |