Author: rwinston
Date: Tue Feb 26 08:30:27 2008
New Revision: 631280

URL: http://svn.apache.org/viewvc?rev=631280&view=rev
Log:
Fix imports

Modified:
    
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPServerPathTests.java
    
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTests.java

Modified: 
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPServerPathTests.java
URL: 
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPServerPathTests.java?rev=631280&r1=631279&r2=631280&view=diff
==============================================================================
--- 
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPServerPathTests.java
 (original)
+++ 
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPServerPathTests.java
 Tue Feb 26 08:30:27 2008
@@ -16,8 +16,12 @@
 
 package org.apache.commons.net.tftp;
 
-import java.io.*;
-import junit.framework.*;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.IOException;
+
+import junit.framework.TestCase;
 
 /**
  * Some basic tests to ensure that the TFTP Server is honoring its read/write 
mode, and preventing
@@ -161,4 +165,6 @@
 
                tftpS.shutdown();
        }
+       
+       
 }

Modified: 
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTests.java
URL: 
http://svn.apache.org/viewvc/commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTests.java?rev=631280&r1=631279&r2=631280&view=diff
==============================================================================
--- 
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTests.java
 (original)
+++ 
commons/proper/net/branches/NET_2_0/src/test/java/org/apache/commons/net/tftp/TFTPTests.java
 Tue Feb 26 08:30:27 2008
@@ -1,9 +1,15 @@
 package org.apache.commons.net.tftp;
 
-import java.io.*;
+import java.io.BufferedInputStream;
+import java.io.BufferedOutputStream;
+import java.io.File;
+import java.io.FileInputStream;
+import java.io.FileOutputStream;
+import java.io.IOException;
+import java.io.InputStream;
+import java.io.OutputStream;
+
 import junit.framework.TestCase;
-import org.apache.commons.net.tftp.TFTP;
-import org.apache.commons.net.tftp.TFTPClient;
 
 /**
  * Test the TFTP Server and TFTP Client by creating some files in the system 
temp folder and then


Reply via email to