aboutsummaryrefslogtreecommitdiff
path: root/src/com/cyanogenmod/filemanager/commands/java/MoveCommand.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/com/cyanogenmod/filemanager/commands/java/MoveCommand.java')
-rw-r--r--src/com/cyanogenmod/filemanager/commands/java/MoveCommand.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/com/cyanogenmod/filemanager/commands/java/MoveCommand.java b/src/com/cyanogenmod/filemanager/commands/java/MoveCommand.java
index c4943b2..a8ac7eb 100644
--- a/src/com/cyanogenmod/filemanager/commands/java/MoveCommand.java
+++ b/src/com/cyanogenmod/filemanager/commands/java/MoveCommand.java
@@ -83,7 +83,7 @@ public class MoveCommand extends Program implements MoveExecutable {
//Move or copy recursively
if (d.exists()) {
- if (!FileHelper.copyRecursive(s, d, getBufferSize(), this)) {
+ if (!FileHelper.copyRecursive(s, d, this)) {
if (isTrace()) {
Log.v(TAG, "Result: FAIL. InsufficientPermissionsException"); //$NON-NLS-1$
}
@@ -97,7 +97,7 @@ public class MoveCommand extends Program implements MoveExecutable {
} else {
// Move between filesystem is not allow. If rename fails then use copy operation
if (!s.renameTo(d)) {
- if (!FileHelper.copyRecursive(s, d, getBufferSize(), this)) {
+ if (!FileHelper.copyRecursive(s, d, this)) {
if (isTrace()) {
Log.v(TAG, "Result: FAIL. InsufficientPermissionsException"); //$NON-NLS-1$
}