From 494ef1e48c4f526d24929fe7ddf9270e5639b20e Mon Sep 17 00:00:00 2001 From: Thomas White Date: Fri, 30 Apr 2010 22:49:08 +0000 Subject: [PATCH] HADOOP-6742. Add methods HADOOP-6709 from to TestFilterFileSystem. Contributed by Eli Collins. git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@939864 13f79535-47bb-0310-9956-ffa450edef68 --- CHANGES.txt | 3 +++ src/test/core/org/apache/hadoop/fs/TestFilterFileSystem.java | 2 ++ 2 files changed, 5 insertions(+) diff --git a/CHANGES.txt b/CHANGES.txt index 78aa9d8adf8..c1d0f84d40f 100644 --- a/CHANGES.txt +++ b/CHANGES.txt @@ -388,6 +388,9 @@ Trunk (unreleased changes) HADOOP-6630. hadoop-config.sh fails to get executed if hadoop wrapper scripts are in path. (Allen Wittenauer via tomwhite) + HADOOP-6742. Add methods HADOOP-6709 from to TestFilterFileSystem. + (Eli Collins via tomwhite) + Release 0.21.0 - Unreleased INCOMPATIBLE CHANGES diff --git a/src/test/core/org/apache/hadoop/fs/TestFilterFileSystem.java b/src/test/core/org/apache/hadoop/fs/TestFilterFileSystem.java index 2abb001659b..4385d6bc8a7 100644 --- a/src/test/core/org/apache/hadoop/fs/TestFilterFileSystem.java +++ b/src/test/core/org/apache/hadoop/fs/TestFilterFileSystem.java @@ -94,6 +94,8 @@ public FSDataOutputStream create(Path f, Progressable progress) { return null; } + public String getName() { return null; } + public boolean delete(Path f) { return false; } public short getReplication(Path src) { return 0 ; } public void processDeleteOnExit() { } public ContentSummary getContentSummary(Path f) { return null; }