Author: sebb
Date: Tue May 31 15:11:03 2011
New Revision: 1129742

URL: http://svn.apache.org/viewvc?rev=1129742&view=rev
Log:
Document throws to prevent warnings (cannot remove throws because subclass 
needs to throw)

Modified:
    
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnDisconnectTest.java
    
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnSkipTest.java

Modified: 
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnDisconnectTest.java
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnDisconnectTest.java?rev=1129742&r1=1129741&r2=1129742&view=diff
==============================================================================
--- 
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnDisconnectTest.java
 (original)
+++ 
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnDisconnectTest.java
 Tue May 31 15:11:03 2011
@@ -529,6 +529,10 @@ public class FtpLetReturnDisconnectTest 
         TestUtil.assertFileEqual(TESTDATA, ROOT_DIR.listFiles()[0]);
     }
 
+    /**
+     * @throws FtpException  
+     * @throws IOException 
+     */
     protected void throwException() throws FtpException, IOException {
         // do not throw, we want to check the result of return values
     }

Modified: 
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnSkipTest.java
URL: 
http://svn.apache.org/viewvc/mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnSkipTest.java?rev=1129742&r1=1129741&r2=1129742&view=diff
==============================================================================
--- 
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnSkipTest.java
 (original)
+++ 
mina/ftpserver/trunk/core/src/test/java/org/apache/ftpserver/ftpletcontainer/FtpLetReturnSkipTest.java
 Tue May 31 15:11:03 2011
@@ -432,6 +432,10 @@ public class FtpLetReturnSkipTest extend
         TestUtil.assertFileEqual(TESTDATA, ROOT_DIR.listFiles()[0]);
     }
 
+    /**
+     * @throws FtpException 
+     * @throws IOException  
+     */
     protected void throwException() throws FtpException, IOException {
         // do not throw, we want to check the result of return values
     }


Reply via email to