Remove unnecessary tags

git-svn-id: https://svn.apache.org/repos/asf/mina/ftpserver/trunk@1129735 13f79535-47bb-0310-9956-ffa450edef68
diff --git a/core/src/test/java/org/apache/ftpserver/clienttests/MFMTTest.java b/core/src/test/java/org/apache/ftpserver/clienttests/MFMTTest.java
index fe84b49..1e15bd2 100644
--- a/core/src/test/java/org/apache/ftpserver/clienttests/MFMTTest.java
+++ b/core/src/test/java/org/apache/ftpserver/clienttests/MFMTTest.java
@@ -112,7 +112,6 @@
         assertTrue(result.contains(" MFMT\r\n"));
     }
 
-    @SuppressWarnings("deprecation")
     public void testSetTime() throws Exception {
         
         assertEquals(213, client.sendCommand("MFMT", "20020717210715 test1.txt"));
@@ -120,13 +119,12 @@
         assertEquals(EXPECTED_TIME.getTimeInMillis(),TEST_FILE1.lastModified());
     }
     
-    @SuppressWarnings("deprecation")
     public void testSetTimeFullPath() throws Exception {
         assertEquals(213, client.sendCommand("MFMT", "20020717210715 dir1/test4.txt"));
         
         assertEquals(EXPECTED_TIME.getTimeInMillis(), TEST_FILE_IN_DIR1.lastModified());
     }
-    @SuppressWarnings("deprecation")
+
     public void testSetTimeFileWithSpaces() throws Exception{
         assertEquals(213, client.sendCommand("MFMT", "20020717210715 my test.txt"));
         
diff --git a/core/src/test/java/org/apache/ftpserver/commands/impl/listing/MLSTFileFormaterTest.java b/core/src/test/java/org/apache/ftpserver/commands/impl/listing/MLSTFileFormaterTest.java
index f3edb6d..724c8e3 100644
--- a/core/src/test/java/org/apache/ftpserver/commands/impl/listing/MLSTFileFormaterTest.java
+++ b/core/src/test/java/org/apache/ftpserver/commands/impl/listing/MLSTFileFormaterTest.java
@@ -36,7 +36,6 @@
 * @author <a href="http://mina.apache.org">Apache MINA Project</a>
 *
 */
-@SuppressWarnings("deprecation")
 public class MLSTFileFormaterTest extends TestCase {
 
     private static final Calendar LAST_MODIFIED_IN_2005 = Calendar.getInstance(TimeZone.getTimeZone("GMT"));