summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--core/java/android/database/sqlite/SQLiteClosable.java4
1 files changed, 2 insertions, 2 deletions
diff --git a/core/java/android/database/sqlite/SQLiteClosable.java b/core/java/android/database/sqlite/SQLiteClosable.java
index aa569c4..a5e612b 100644
--- a/core/java/android/database/sqlite/SQLiteClosable.java
+++ b/core/java/android/database/sqlite/SQLiteClosable.java
@@ -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());
}
}
}