Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 6ca404d5 authored by Vasu Nori's avatar Vasu Nori Committed by Android (Google) Code Review
Browse files

Merge "change error message on cl I392875b62ed270741633f5bffa519932e4a9f985"

parents 03e47fc8 23221192
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -79,8 +79,8 @@ public abstract class SQLiteClosable {
    // STOPSHIP remove this method before shipping
    private void checkRefCount() {
        if (mReferenceCount > 1000) {
            throw new IllegalStateException("refcount: " + mReferenceCount + ", " +
                    getObjInfo());
            throw new IllegalStateException("bad refcount: " + mReferenceCount +
                    ". file bug against frameworks->database" + getObjInfo());
        }
    }
}