diff options
author | Szymon Świstun <sswistun@virtuslab.com> | 2019-12-16 17:59:48 +0100 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-01-08 10:45:08 +0100 |
commit | be47aa9b85be2100204dcb740f8eea41489e67a9 (patch) | |
tree | a8170c350f186de0e96a52dca6f089340334e45d /core/src/main/kotlin/model | |
parent | f57e3081052d6d148b4f8af70f838ba13ae96b29 (diff) | |
download | dokka-be47aa9b85be2100204dcb740f8eea41489e67a9.tar.gz dokka-be47aa9b85be2100204dcb740f8eea41489e67a9.tar.bz2 dokka-be47aa9b85be2100204dcb740f8eea41489e67a9.zip |
response to comments
Diffstat (limited to 'core/src/main/kotlin/model')
-rw-r--r-- | core/src/main/kotlin/model/Documentable.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/model/Documentable.kt b/core/src/main/kotlin/model/Documentable.kt index bd3dafda..ac0b41d9 100644 --- a/core/src/main/kotlin/model/Documentable.kt +++ b/core/src/main/kotlin/model/Documentable.kt @@ -5,7 +5,7 @@ import org.jetbrains.dokka.transformers.descriptors.KotlinTypeWrapper import org.jetbrains.dokka.links.DRI import org.jetbrains.dokka.pages.PlatformData -class Module(override val name: String?, val packages: List<Package>) : Documentable() { +class Module(override val name: String, val packages: List<Package>) : Documentable() { override val dri: DRI = DRI.topLevel override val children: List<Package> = packages override val extra: MutableSet<Extra> = mutableSetOf() |