diff options
author | Kamil Doległo <kamilok1965@interia.pl> | 2020-06-12 11:35:42 +0200 |
---|---|---|
committer | Paweł Marks <Kordyjan@users.noreply.github.com> | 2020-06-15 13:15:30 +0200 |
commit | c804fab6e15ce7974453388afbdeed1cae33ea83 (patch) | |
tree | ee30c19c7550c1e3b0ad923980c90eba9f2b4259 /core/src | |
parent | 18d46c118174e0aea8d917b977ff7e8461e0e8c4 (diff) | |
download | dokka-c804fab6e15ce7974453388afbdeed1cae33ea83.tar.gz dokka-c804fab6e15ce7974453388afbdeed1cae33ea83.tar.bz2 dokka-c804fab6e15ce7974453388afbdeed1cae33ea83.zip |
Make module name a part of sourceSetID be default
Diffstat (limited to 'core/src')
-rw-r--r-- | core/src/main/kotlin/model/SourceSetData.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/core/src/main/kotlin/model/SourceSetData.kt b/core/src/main/kotlin/model/SourceSetData.kt index 7d118470..3e38cc7b 100644 --- a/core/src/main/kotlin/model/SourceSetData.kt +++ b/core/src/main/kotlin/model/SourceSetData.kt @@ -20,7 +20,7 @@ class SourceSetCache { get() = sourceSets.values.toList() fun getSourceSet(pass: DokkaConfiguration.PassConfiguration) = - sourceSets.getOrPut("${pass.moduleName}/${pass.sourceSetID}", + sourceSets.getOrPut(pass.sourceSetID, { SourceSetData( pass.moduleName, |