* commit 'b6247f0a7aad20f76764f6d4ffaf4f6d3a3c1208': Fixed mis-located cleanup code
This commit is contained in:
commit
1156277079
@ -552,16 +552,6 @@ public final class DBHelper {
|
||||
|
||||
@Override
|
||||
public void onOpen(SQLiteDatabase db) {
|
||||
try {
|
||||
// Cleanup some nasty records
|
||||
db.execSQL("DELETE FROM " + Account.TABLE_NAME
|
||||
+ " WHERE " + AccountColumns.DISPLAY_NAME + " ISNULL;");
|
||||
db.execSQL("DELETE FROM " + HostAuth.TABLE_NAME
|
||||
+ " WHERE " + HostAuthColumns.PROTOCOL + " ISNULL;");
|
||||
} catch (SQLException e) {
|
||||
// Shouldn't be needed unless we're debugging and interrupt the process
|
||||
LogUtils.e(TAG, e, "Exception cleaning EmailProvider.db");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
@ -1067,6 +1057,16 @@ public final class DBHelper {
|
||||
|
||||
@Override
|
||||
public void onOpen(SQLiteDatabase db) {
|
||||
try {
|
||||
// Cleanup some nasty records
|
||||
db.execSQL("DELETE FROM " + Account.TABLE_NAME
|
||||
+ " WHERE " + AccountColumns.DISPLAY_NAME + " ISNULL;");
|
||||
db.execSQL("DELETE FROM " + HostAuth.TABLE_NAME
|
||||
+ " WHERE " + HostAuthColumns.PROTOCOL + " ISNULL;");
|
||||
} catch (SQLException e) {
|
||||
// Shouldn't be needed unless we're debugging and interrupt the process
|
||||
LogUtils.e(TAG, e, "Exception cleaning EmailProvider.db");
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
Loading…
Reference in New Issue
Block a user