bug:3396894 (HC branch) remove STOPSHIP code

Change-Id: Iad8790b7c2efa3a9b35e07429ea47d4e9f72081b
This commit is contained in:
Vasu Nori
2011-01-26 23:22:34 -08:00
parent 41f4241240
commit 4b92aeec3f

View File

@@ -416,8 +416,7 @@ public class SQLiteDatabase extends SQLiteClosable {
private void lock(boolean forced) {
// make sure this method is NOT being called from a 'synchronized' method
if (Thread.holdsLock(this)) {
// STOPSHIP change the following line to Log.w()
throw new IllegalStateException("don't lock() while in a synchronized method");
Log.w(TAG, "don't lock() while in a synchronized method");
}
verifyDbIsOpen();
if (!forced && !mLockingEnabled) return;