Skip to content

Commit

Permalink
remove useless braces
Browse files Browse the repository at this point in the history
  • Loading branch information
martinbonnin committed May 18, 2022
1 parent 49ec2d4 commit 08cec9a
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -21,7 +21,7 @@ internal class SqliteDatabase(path:String, label:String, val logger: Logger, pri
if (err != SQLITE_OK) {
val error = sqlite3_errmsg(dbPointer)?.toKString()

throw sqlException(logger, config, "error while compiling: $sqlString\n${error}", err)
throw sqlException(logger, config, "error while compiling: $sqlString\n$error", err)
}

statementPtr.value!!
Expand Down

0 comments on commit 08cec9a

Please sign in to comment.