test call request without args

This commit is contained in:
2021-07-17 15:39:08 +02:00
parent a2f265d227
commit fa66114d01
3 changed files with 22 additions and 4 deletions

View File

@@ -27,7 +27,7 @@ interface Executable {
fun <R : EntityI> selectOne(
sql: String,
typeReference: TypeReference<R>,
values: List<Any?> = emptyList(),
values: List<Any?>,
block: SelectOneCallback<R> = {}
): R?