From 316841d9ae01c9240bdd33aa7e2d432f1e9b1aa4 Mon Sep 17 00:00:00 2001 From: Kamil Doległo Date: Wed, 22 Jul 2020 18:44:28 +0200 Subject: Make DParameter extend `WithType` --- core/src/main/kotlin/model/Documentable.kt | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'core/src/main/kotlin') diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index 2c3e1323..4f9732c0 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -298,10 +298,10 @@ data class DParameter( override val name: String?, override val documentation: SourceSetDependent, override val expectPresentInSet: DokkaSourceSet?, - val type: Bound, + override val type: Bound, override val sourceSets: Set, override val extra: PropertyContainer = PropertyContainer.empty() -) : Documentable(), WithExtraProperties { +) : Documentable(), WithExtraProperties, WithType { override val children: List get() = emptyList() -- cgit