You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@nutch.apache.org by cu...@apache.org on 2005/10/09 17:15:36 UTC

svn commit: r307445 - /lucene/nutch/branches/mapred/src/java/org/apache/nutch/fs/NDFSFileSystem.java

Author: cutting
Date: Sun Oct  9 08:15:34 2005
New Revision: 307445

URL: http://svn.apache.org/viewcvs?rev=307445&view=rev
Log:
Overwrite should be default now.  Use super's implementation.

Modified:
    lucene/nutch/branches/mapred/src/java/org/apache/nutch/fs/NDFSFileSystem.java

Modified: lucene/nutch/branches/mapred/src/java/org/apache/nutch/fs/NDFSFileSystem.java
URL: http://svn.apache.org/viewcvs/lucene/nutch/branches/mapred/src/java/org/apache/nutch/fs/NDFSFileSystem.java?rev=307445&r1=307444&r2=307445&view=diff
==============================================================================
--- lucene/nutch/branches/mapred/src/java/org/apache/nutch/fs/NDFSFileSystem.java (original)
+++ lucene/nutch/branches/mapred/src/java/org/apache/nutch/fs/NDFSFileSystem.java Sun Oct  9 08:15:34 2005
@@ -64,14 +64,6 @@
       return ndfs.open(getPath(f));
     }
 
-    /**
-     * Create the file at f.
-     */
-    public NFSOutputStream create(File f) throws IOException {
-        return create(f, false);
-    }
-    /**
-     */
     public NFSOutputStream create(File f, boolean overwrite) throws IOException {
       return ndfs.create(getPath(f), overwrite);
     }