HADOOP-6940. RawLocalFileSystem's markSupported method misnamed markSupport. Contributed by Tom White.

git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@995285 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Eli Collins 2010-09-08 23:47:28 +00:00
parent 086223892e
commit 8a85347554
2 changed files with 5 additions and 1 deletions

View File

@ -238,6 +238,9 @@ Trunk (unreleased changes)
HADOOP-6930. AvroRpcEngine doesn't work with generated Avro code.
(sharad)
HADOOP-6940. RawLocalFileSystem's markSupported method misnamed markSupport.
(Tom White via eli).
Release 0.21.0 - Unreleased
INCOMPATIBLE CHANGES

View File

@ -128,7 +128,8 @@ public class RawLocalFileSystem extends FileSystem {
*/
public int available() throws IOException { return fis.available(); }
public void close() throws IOException { fis.close(); }
public boolean markSupport() { return false; }
@Override
public boolean markSupported() { return false; }
public int read() throws IOException {
try {