Author: szetszwo
Date: Tue Jun  2 18:27:46 2009
New Revision: 781115

URL: http://svn.apache.org/viewvc?rev=781115&view=rev
Log:
HADOOP-5953. The isDirectory(..) and isFile(..) methods in KosmosFileSystem 
should not be deprecated.

Modified:
    hadoop/core/trunk/CHANGES.txt
    hadoop/core/trunk/src/core/org/apache/hadoop/fs/kfs/KosmosFileSystem.java

Modified: hadoop/core/trunk/CHANGES.txt
URL: 
http://svn.apache.org/viewvc/hadoop/core/trunk/CHANGES.txt?rev=781115&r1=781114&r2=781115&view=diff
==============================================================================
--- hadoop/core/trunk/CHANGES.txt (original)
+++ hadoop/core/trunk/CHANGES.txt Tue Jun  2 18:27:46 2009
@@ -750,6 +750,9 @@
     even when the default value of dfs.http.address is not overridden.
     (Todd Lipcon via dhruba)
 
+    HADOOP-5953. The isDirectory(..) and isFile(..) methods in KosmosFileSystem
+    should not be deprecated.  (szetszwo)
+
 Release 0.20.1 - Unreleased
 
   INCOMPATIBLE CHANGES

Modified: 
hadoop/core/trunk/src/core/org/apache/hadoop/fs/kfs/KosmosFileSystem.java
URL: 
http://svn.apache.org/viewvc/hadoop/core/trunk/src/core/org/apache/hadoop/fs/kfs/KosmosFileSystem.java?rev=781115&r1=781114&r2=781115&view=diff
==============================================================================
--- hadoop/core/trunk/src/core/org/apache/hadoop/fs/kfs/KosmosFileSystem.java 
(original)
+++ hadoop/core/trunk/src/core/org/apache/hadoop/fs/kfs/KosmosFileSystem.java 
Tue Jun  2 18:27:46 2009
@@ -122,7 +122,6 @@
     }
 
     @Override
-    @Deprecated
     public boolean isDirectory(Path path) throws IOException {
        Path absolute = makeAbsolute(path);
         String srep = absolute.toUri().getPath();
@@ -133,7 +132,6 @@
     }
 
     @Override
-    @Deprecated
     public boolean isFile(Path path) throws IOException {
        Path absolute = makeAbsolute(path);
         String srep = absolute.toUri().getPath();


Reply via email to