소스 검색

FileDataStorageManager: remove obsolete TODO

Signed-off-by: Álvaro Brey Vilas <alvaro.brey@nextcloud.com>
Álvaro Brey Vilas 3 년 전
부모
커밋
130c004945
1개의 변경된 파일0개의 추가작업 그리고 3개의 파일을 삭제
  1. 0 3
      src/main/java/com/owncloud/android/datamodel/FileDataStorageManager.java

+ 0 - 3
src/main/java/com/owncloud/android/datamodel/FileDataStorageManager.java

@@ -555,9 +555,6 @@ public class FileDataStorageManager {
                     Uri file_uri = ContentUris.withAppendedId(ProviderTableMeta.CONTENT_URI_FILE, ocFile.getFileId());
                     String where = ProviderTableMeta.FILE_ACCOUNT_OWNER + AND + ProviderTableMeta.FILE_PATH + "=?";
 
-                    // TODO switch to string array with fixed keys in it
-                    // file_owner = ? and path =?
-                    // String[] { "file_owner",  "path"}
                     String[] whereArgs = new String[]{user.getAccountName(), ocFile.getRemotePath()};
                     int deleted = 0;
                     if (getContentProviderClient() != null) {