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

Commit 23221192 authored by Vasu Nori's avatar Vasu Nori
Browse files

change error message on cl I392875b62ed270741633f5bffa519932e4a9f985

Change-Id: I9eaf201822a9efd8afbdf5cd0e7ef2f01749b955
parent 707929d6
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());
        }
    }
}