You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by ng...@apache.org on 2013/08/12 00:16:00 UTC

[05/50] [abbrv] git commit: Remove unnecessary tags

Remove unnecessary tags

git-svn-id: https://svn.apache.org/repos/asf/mina/ftpserver/trunk@1129735 13f79535-47bb-0310-9956-ffa450edef68


Project: http://git-wip-us.apache.org/repos/asf/mina-ftpserver/repo
Commit: http://git-wip-us.apache.org/repos/asf/mina-ftpserver/commit/ccbea002
Tree: http://git-wip-us.apache.org/repos/asf/mina-ftpserver/tree/ccbea002
Diff: http://git-wip-us.apache.org/repos/asf/mina-ftpserver/diff/ccbea002

Branch: refs/heads/trunk
Commit: ccbea0029d2b99f61597af5d33aaa79226d3ae5a
Parents: 5bcab53
Author: Sebastian Bazley <se...@apache.org>
Authored: Tue May 31 15:08:52 2011 +0000
Committer: Sebastian Bazley <se...@apache.org>
Committed: Tue May 31 15:08:52 2011 +0000

----------------------------------------------------------------------
 .../src/test/java/org/apache/ftpserver/clienttests/MFMTTest.java | 4 +---
 .../ftpserver/commands/impl/listing/MLSTFileFormaterTest.java    | 1 -
 2 files changed, 1 insertion(+), 4 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/mina-ftpserver/blob/ccbea002/core/src/test/java/org/apache/ftpserver/clienttests/MFMTTest.java
----------------------------------------------------------------------
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 @@ public class MFMTTest extends ClientTestTemplate {
         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 @@ public class MFMTTest extends ClientTestTemplate {
         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"));
         

http://git-wip-us.apache.org/repos/asf/mina-ftpserver/blob/ccbea002/core/src/test/java/org/apache/ftpserver/commands/impl/listing/MLSTFileFormaterTest.java
----------------------------------------------------------------------
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 @@ import org.apache.ftpserver.ftplet.FtpFile;
 * @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"));