Loading core/java/android/database/sqlite/SQLiteDatabase.java +8 −7 Original line number Diff line number Diff line Loading @@ -1140,8 +1140,9 @@ public class SQLiteDatabase extends SQLiteClosable { } } else { // the statement is not yet closed. most probably programming error in the app. Log.w(TAG, "dbclose failed due to un-close()d SQL statements: " + msg); throw e; throw new SQLiteUnfinalizedObjectsException( "close() on database: " + getPath() + " failed due to un-close()d SQL statements: " + msg); } } } Loading Loading
core/java/android/database/sqlite/SQLiteDatabase.java +8 −7 Original line number Diff line number Diff line Loading @@ -1140,8 +1140,9 @@ public class SQLiteDatabase extends SQLiteClosable { } } else { // the statement is not yet closed. most probably programming error in the app. Log.w(TAG, "dbclose failed due to un-close()d SQL statements: " + msg); throw e; throw new SQLiteUnfinalizedObjectsException( "close() on database: " + getPath() + " failed due to un-close()d SQL statements: " + msg); } } } Loading