You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@mina.apache.org by se...@apache.org on 2011/06/22 23:08:08 UTC

svn commit: r1138634 - /mina/ftpserver/branches/1.0.x/core/src/main/java/org/apache/ftpserver/filesystem/nativefs/impl/NativeFtpFile.java

Author: sebb
Date: Wed Jun 22 21:08:08 2011
New Revision: 1138634

URL: http://svn.apache.org/viewvc?rev=1138634&view=rev
Log:
Missing @Overrides

Modified:
    mina/ftpserver/branches/1.0.x/core/src/main/java/org/apache/ftpserver/filesystem/nativefs/impl/NativeFtpFile.java

Modified: mina/ftpserver/branches/1.0.x/core/src/main/java/org/apache/ftpserver/filesystem/nativefs/impl/NativeFtpFile.java
URL: http://svn.apache.org/viewvc/mina/ftpserver/branches/1.0.x/core/src/main/java/org/apache/ftpserver/filesystem/nativefs/impl/NativeFtpFile.java?rev=1138634&r1=1138633&r2=1138634&view=diff
==============================================================================
--- mina/ftpserver/branches/1.0.x/core/src/main/java/org/apache/ftpserver/filesystem/nativefs/impl/NativeFtpFile.java (original)
+++ mina/ftpserver/branches/1.0.x/core/src/main/java/org/apache/ftpserver/filesystem/nativefs/impl/NativeFtpFile.java Wed Jun 22 21:08:08 2011
@@ -362,6 +362,7 @@ public class NativeFtpFile implements Ft
         // The IBM jre needs to have both the stream and the random access file
         // objects closed to actually close the file
         return new FileOutputStream(raf.getFD()) {
+            @Override
             public void close() throws IOException {
                 super.close();
                 raf.close();
@@ -386,6 +387,7 @@ public class NativeFtpFile implements Ft
         // The IBM jre needs to have both the stream and the random access file
         // objects closed to actually close the file
         return new FileInputStream(raf.getFD()) {
+            @Override
             public void close() throws IOException {
                 super.close();
                 raf.close();