浏览代码

removed dummy synced folder entry

tobiasKaminsky 8 年之前
父节点
当前提交
179c695128
共有 1 个文件被更改,包括 0 次插入12 次删除
  1. 0 12
      src/com/owncloud/android/providers/FileContentProvider.java

+ 0 - 12
src/com/owncloud/android/providers/FileContentProvider.java

@@ -956,18 +956,6 @@ public class FileContentProvider extends ContentProvider {
                 + ProviderTableMeta.SYNCED_FOLDER_ACCOUNT + "  TEXT, "              // account
                 + ProviderTableMeta.SYNCED_FOLDER_UPLOAD_ACTION + " INTEGER );"     // upload action
         );
-
-        // TODO Tobi remove after testing
-        db.execSQL("INSERT INTO " + ProviderTableMeta.SYNCED_FOLDERS_TABLE_NAME + "("
-                + ProviderTableMeta.SYNCED_FOLDER_LOCAL_PATH  + ", "            // local path
-                + ProviderTableMeta.SYNCED_FOLDER_REMOTE_PATH + ", "            // remote path
-                + ProviderTableMeta.SYNCED_FOLDER_WIFI_ONLY + ", "              // wifi_only
-                + ProviderTableMeta.SYNCED_FOLDER_CHARGING_ONLY + ", "          // charging only
-                + ProviderTableMeta.SYNCED_FOLDER_ENABLED + ", "                // enabled
-                + ProviderTableMeta.SYNCED_FOLDER_SUBFOLDER_BY_DATE + ", "      // subfolder by date
-                + ProviderTableMeta.SYNCED_FOLDER_ACCOUNT + ", "                // account
-                + ProviderTableMeta.SYNCED_FOLDER_UPLOAD_ACTION + ") "          // upload action
-                + "VALUES ('/sdcard/DCIM/', '/syncTest', 0, 0, 1, 1, 'tobi', 1)");
     }
 
     /**