HADOOP-10767. Clean up unused code in Ls shell command. Contributed by Chris Nauroth.
git-svn-id: https://svn.apache.org/repos/asf/hadoop/common/trunk@1607133 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
950ae82571
commit
e6b0f6d346
@ -489,6 +489,8 @@ Release 2.5.0 - UNRELEASED
|
||||
HADOOP-10649. Allow overriding the default ACL for service authorization
|
||||
(Benoy Antony via Arpit Agarwal)
|
||||
|
||||
HADOOP-10767. Clean up unused code in Ls shell command. (cnauroth)
|
||||
|
||||
OPTIMIZATIONS
|
||||
|
||||
BUG FIXES
|
||||
|
@ -19,21 +19,16 @@
|
||||
package org.apache.hadoop.fs.shell;
|
||||
|
||||
import java.io.IOException;
|
||||
import java.net.URI;
|
||||
import java.text.SimpleDateFormat;
|
||||
import java.util.Date;
|
||||
import java.util.LinkedList;
|
||||
import java.util.Set;
|
||||
import org.apache.hadoop.util.StringUtils;
|
||||
|
||||
import org.apache.hadoop.classification.InterfaceAudience;
|
||||
import org.apache.hadoop.classification.InterfaceStability;
|
||||
import org.apache.hadoop.fs.FileStatus;
|
||||
import org.apache.hadoop.fs.FileSystem;
|
||||
import org.apache.hadoop.fs.Path;
|
||||
|
||||
import com.google.common.collect.Sets;
|
||||
|
||||
/**
|
||||
* Get a listing of all files in that match the file patterns.
|
||||
*/
|
||||
@ -70,7 +65,6 @@ public static void registerCommands(CommandFactory factory) {
|
||||
protected boolean dirRecurse;
|
||||
|
||||
protected boolean humanReadable = false;
|
||||
private Set<URI> aclNotSupportedFsSet = Sets.newHashSet();
|
||||
|
||||
protected String formatSize(long size) {
|
||||
return humanReadable
|
||||
|
Loading…
Reference in New Issue
Block a user