stop throwing an exception in DBHelper.onDowngrade()

I missed this little detail ind64a55e013882a7d6b3de646955ed68647a82e97,
the super version of this throws an exception, so it stops the downgrade.

fdroid/fdroidclient!729
This commit is contained in:
Hans-Christoph Steiner 2018-08-10 17:06:26 +02:00
parent c291b8f0f8
commit db5ac3bdfc

View File

@ -280,7 +280,6 @@ public class DBHelper extends SQLiteOpenHelper {
@Override
public void onDowngrade(SQLiteDatabase db, int oldVersion, int newVersion) {
super.onDowngrade(db, oldVersion, newVersion);
resetTransient(context);
}