Skip to content
This repository was archived by the owner on Jan 20, 2023. It is now read-only.

Commit 49c59a7

Browse files
committed
不要な上界の削除
1 parent 2ae52d2 commit 49c59a7

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/kotlin/com/mapk/deserialization/KColumnDeserialize.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ import kotlin.reflect.KClass
77
@MustBeDocumented
88
annotation class KColumnDeserializeBy(val deserializer: KClass<out AbstractKColumnDeserializer<*, *, *>>)
99

10-
abstract class AbstractKColumnDeserializer<A : Annotation, S : Any, D : Any>(protected val annotation: A) {
10+
abstract class AbstractKColumnDeserializer<A : Annotation, S : Any, D>(protected val annotation: A) {
1111
abstract val srcClass: Class<S>
1212
abstract fun deserialize(source: S?): D?
1313
}

0 commit comments

Comments
 (0)