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:
parent
086223892e
commit
8a85347554
|
@ -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
|
||||
|
|
|
@ -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 {
|
||||
|
|
Loading…
Reference in New Issue