Skip to content

Commit c64282f

Browse files
authored
Merge pull request #721 from jeffgbutler/coverage
Restore Coverage
2 parents fd8a17a + 0c23857 commit c64282f

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/org/mybatis/dynamic/sql/util/kotlin/elements/SqlTableExtensions.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -33,7 +33,7 @@ fun <T : Any> SqlTable.column(
3333
jdbcType: JDBCType? = null,
3434
typeHandler: String? = null,
3535
renderingStrategy: RenderingStrategy? = null,
36-
parameterTypeConverter: ((T?) -> Any?)? = { it },
36+
parameterTypeConverter: ((T?) -> Any?) = { it },
3737
javaType: KClass<T>? = null
3838
): SqlColumn<T> = SqlColumn.Builder<T>().run {
3939
withTable(this@column)

0 commit comments

Comments
 (0)