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

Commit b3b8f9d

Browse files
committed
名前被り解消のため、KColumnDeserializerクラスのプレフィックスにAbstractを追加
1 parent 45e775e commit b3b8f9d

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

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

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,9 @@ import kotlin.reflect.KClass
55
@Target(AnnotationTarget.ANNOTATION_CLASS)
66
@Retention(AnnotationRetention.RUNTIME)
77
@MustBeDocumented
8-
annotation class KColumnDeserializeBy(val deserializer: KClass<out KColumnDeserializer<*, *, *>>)
8+
annotation class KColumnDeserializeBy(val deserializer: KClass<out AbstractKColumnDeserializer<*, *, *>>)
99

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

0 commit comments

Comments
 (0)