فهرست منبع

removed empty if

tobiasKaminsky 8 سال پیش
والد
کامیت
9544b79197
1فایلهای تغییر یافته به همراه1 افزوده شده و 4 حذف شده
  1. 1 4
      src/main/java/com/owncloud/android/datamodel/FileDataStorageManager.java

+ 1 - 4
src/main/java/com/owncloud/android/datamodel/FileDataStorageManager.java

@@ -251,10 +251,7 @@ public class FileDataStorageManager {
     }
     }
 
 
     public OCFile saveFileWithParent(OCFile file, Context context) {
     public OCFile saveFileWithParent(OCFile file, Context context) {
-        if (file.getParentId() != 0 || file.getRemotePath().equals("/")) {
-//            nothing needed
-
-        } else {
+        if (file.getParentId() == 0 && !file.getRemotePath().equals("/")) {
             String remotePath = file.getRemotePath();
             String remotePath = file.getRemotePath();
             String parentPath = remotePath.substring(0, remotePath.lastIndexOf(file.getFileName()));
             String parentPath = remotePath.substring(0, remotePath.lastIndexOf(file.getFileName()));