You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
{{ message }}
This repository has been archived by the owner on Jul 13, 2020. It is now read-only.
Both parseRow() methods throw an exception if the column count is != 0 instead of when it is != 1:
override fun parseRow(columns: Array): T {
if (columns.size() != 0)
throw SQLiteException("Invalid row: row for SingleColumnParser must contain exactly one column")
[suppress("UNCHECKED_CAST")]
return columns[0] as T
}
The text was updated successfully, but these errors were encountered:
Both
parseRow()
methods throw an exception if the column count is!= 0
instead of when it is!= 1
:The text was updated successfully, but these errors were encountered: