Minor formatting changes

pull/14/head
Tim Su 14 years ago
parent b729756306
commit 8e743d343f

@ -91,7 +91,7 @@ public class TagToTaskMapping extends AbstractModel {
default:
// we don't know how to handle it... show an error
Log.e(getClass().getSimpleName(), "Unsupported migration from " + oldVersion + " to " + newVersion);
DialogUtilities.okDialog(context, "There was a database error reading from Alerts. Data may have been corrupted.", null);
DialogUtilities.okDialog(context, "There was a database error reading from Tags. Data may have been corrupted.", null);
}
}
}

@ -118,7 +118,7 @@ public class Database extends AbstractDatabase {
*/
@Override
public synchronized void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
Log.w("database", String.format("Upgrading database from version %d to %d.",
Log.w("database-" + NAME, String.format("Upgrading database from version %d to %d.",
oldVersion, newVersion));
switch(oldVersion) {

Loading…
Cancel
Save