1
0
mirror of https://github.com/moparisthebest/k-9 synced 2025-01-13 22:58:03 -05:00

Corrected indentation

This commit is contained in:
cketti 2012-07-07 17:14:03 +02:00
parent 400487b8aa
commit d08169b004

View File

@ -371,16 +371,12 @@ public class LocalStore extends Store implements Serializable {
}
}
}
}
catch (SQLiteException e) {
} catch (SQLiteException e) {
Log.e(K9.LOG_TAG, "Exception while upgrading database. Resetting the DB to v0");
db.setVersion(0);
throw new Error("Database upgrade failed! Resetting your DB version to 0 to force a full schema recreation.");
}
db.setVersion(DB_VERSION);
if (db.getVersion() != DB_VERSION) {