We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent ac4fade commit 6fbaf4cCopy full SHA for 6fbaf4c
android/src/main/java/com/reactnativecommunity/asyncstorage/AsyncStorageMigration.java
@@ -52,18 +52,6 @@ public static void migrate(Context context) {
52
return;
53
}
54
55
- try {
56
- for (File file : expoDatabases) {
57
- if (file.delete()) {
58
- Log.v(LOG_TAG, "Deleted scoped database " + file.getName());
59
- } else {
60
- Log.v(LOG_TAG, "Failed to delete scoped database " + file.getName());
61
- }
62
63
- } catch (Exception e) {
64
- e.printStackTrace();
65
66
-
67
Log.v(LOG_TAG, "Completed the scoped AsyncStorage migration");
68
69
0 commit comments