am 0c06a7cf
: Fixed mis-located cleanup code
* commit '0c06a7cf995c0d3e5dcccae97349891a46c3320f': Fixed mis-located cleanup code
This commit is contained in:
commit
b6247f0a7a
@ -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