aboutsummaryrefslogtreecommitdiffstats
path: root/src/com/cyanogenmod/explorer/commands/shell/ShellExecutableCreator.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/cyanogenmod/explorer/commands/shell/ShellExecutableCreator.java')
-rw-r--r--src/com/cyanogenmod/explorer/commands/shell/ShellExecutableCreator.java15
1 files changed, 15 insertions, 0 deletions
diff --git a/src/com/cyanogenmod/explorer/commands/shell/ShellExecutableCreator.java b/src/com/cyanogenmod/explorer/commands/shell/ShellExecutableCreator.java
index be91a8d3..3bf05878 100644
--- a/src/com/cyanogenmod/explorer/commands/shell/ShellExecutableCreator.java
+++ b/src/com/cyanogenmod/explorer/commands/shell/ShellExecutableCreator.java
@@ -518,4 +518,19 @@ public class ShellExecutableCreator implements ExecutableCreator {
}
}
+ /**
+ * {@inheritDoc}
+ */
+ @Override
+ public UncompressCommand createUncompressExecutable(
+ String src,
+ AsyncResultListener asyncResultListener)
+ throws CommandNotFoundException {
+ try {
+ return new UncompressCommand(src, asyncResultListener);
+ } catch (InvalidCommandDefinitionException icdEx) {
+ throw new CommandNotFoundException("UncompressCommand", icdEx); //$NON-NLS-1$
+ }
+ }
+
}