Remove inappropriate assertion...

... Errors reported by sqlite are not conditions that should be provably
impossible.
This commit is contained in:
Paul Licameli 2020-12-06 15:16:49 -05:00
parent 4e260389da
commit 046ae403ba

View File

@ -80,8 +80,6 @@ void DBConnection::SetDBError(
? Verbatim(sqlite3_errmsg(DB())) : libraryError;
wxLogDebug(wxT(" Lib error: %s"), mpErrors->mLibraryError.Debug());
printf(" Lib error: %s", mpErrors->mLibraryError.Debug().mb_str().data());
wxASSERT(false);
}
bool DBConnection::Open(const char *fileName)