diff options
Diffstat (limited to 'src/com/cyanogenmod/filemanager/commands/java/CreateFileCommand.java')
| -rw-r--r-- | src/com/cyanogenmod/filemanager/commands/java/CreateFileCommand.java | 10 |
1 files changed, 9 insertions, 1 deletions
diff --git a/src/com/cyanogenmod/filemanager/commands/java/CreateFileCommand.java b/src/com/cyanogenmod/filemanager/commands/java/CreateFileCommand.java index fa9b5bf..ab9901f 100644 --- a/src/com/cyanogenmod/filemanager/commands/java/CreateFileCommand.java +++ b/src/com/cyanogenmod/filemanager/commands/java/CreateFileCommand.java @@ -105,7 +105,15 @@ public class CreateFileCommand extends Program implements CreateFileExecutable { * {@inheritDoc} */ @Override - public MountPoint getWritableMountPoint() { + public MountPoint getSrcWritableMountPoint() { + return null; + } + + /** + * {@inheritDoc} + */ + @Override + public MountPoint getDstWritableMountPoint() { return MountPointHelper.getMountPointFromDirectory(this.mPath); } } |
