final SortedSet tables = new TreeSet(Arrays.asList(cl.getArgs()));
<<<<<<< HEAD:shell/src/main/java/org/apache/accumulo/shell/commands/DUCommand.java
if (cl.hasOption(ShellOptions.tableOption)) {
String tableName = cl.getOptionValue(ShellOptions.tableOption);
if (!shellState.getConnector().tableOperations().exists(tableName)) {
throw new TableNotFoundException(tableName, tableName, "specified table that doesn't exist");
}
tables.add(tableName);
=======
if (cl.hasOption(Shell.tableOption)) {
tables.add(cl.getOptionValue(Shell.tableOption));
>>>>>>> 2b168f819f8dfa865785fd644e6bfa82722ff4d0:core/src/main/java/org/apache/accumulo/core/util/shell/commands/DUCommand.java
}
if (cl.hasOption(optNamespace.getOpt())) { |