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

Commit 087e840

Browse files
committed
デシリアライズ処理の引数のnullabilityを修正
1 parent ed71f3f commit 087e840

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
@@ -9,5 +9,5 @@ annotation class KColumnDeserializeBy(val deserializer: KClass<out AbstractKColu
99

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

0 commit comments

Comments
 (0)