diff options
| author | Makoto Onuki <omakoto@google.com> | 2019-03-19 13:57:08 -0700 |
|---|---|---|
| committer | Makoto Onuki <omakoto@google.com> | 2019-03-19 14:04:56 -0700 |
| commit | 55e9970511f970b9a45f5537f850597205707f71 (patch) | |
| tree | 3b050915664f2f2dc38a1ef8b8daef565d22d96e /core/java/android/database | |
| parent | 9ba5e8e458212f1115df2f7602632549165a00aa (diff) | |
Disable DB wipe check
We stopped using WAL, so let's just disable it
Change-Id: I14f4f3ca6521db12a2fbde8c20122bb4b2cc8186
Fix: 118613196
Test: Manual test with removing DB files
Diffstat (limited to 'core/java/android/database')
| -rw-r--r-- | core/java/android/database/sqlite/SQLiteGlobal.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/java/android/database/sqlite/SQLiteGlobal.java b/core/java/android/database/sqlite/SQLiteGlobal.java index d796003395f5..5e2875d02d90 100644 --- a/core/java/android/database/sqlite/SQLiteGlobal.java +++ b/core/java/android/database/sqlite/SQLiteGlobal.java @@ -176,6 +176,6 @@ public final class SQLiteGlobal { /** @hide */ public static boolean checkDbWipe() { - return true; + return false; } } |
