Missing methods on FilterFs --------------------------- Key: HADOOP-6719 URL: https://issues.apache.org/jira/browse/HADOOP-6719 Project: Hadoop Common Issue Type: Bug Affects Versions: 0.22.0 Reporter: Rodrigo Schmidt Assignee: Rodrigo Schmidt Fix For: 0.22.0
The following methods are not declared on FilterFs(). Some of them are fine, but others like getUri(), getStatistics(), getHomeDirectory() look like they should be there. Here is the complete list: {code} { public FSDataInputStream open(final Path f) { return null; } public void checkPath(Path path) { } public Statistics getStatistics() { return null; } public URI getUri() { return null; } public Path getHomeDirectory() { return null; } public void checkScheme(URI uri, String supportedScheme) { } public String getUriPath(final Path p) { return null; } public void renameInternal(final Path src, final Path dst, boolean overwrite) { } public FsStatus getFsStatus(final Path f) { return null; } } {code} -- This message is automatically generated by JIRA. - You can reply to this email to add a comment to the issue online.