diff options
author | sebastian.sellmair <sebastian.sellmair@jetbrains.com> | 2020-08-13 19:54:42 +0200 |
---|---|---|
committer | Sebastian Sellmair <34319766+sellmair@users.noreply.github.com> | 2020-08-14 17:51:11 +0200 |
commit | e3bf37c0ef8c88755f1d2d15d3ba6d07d649e005 (patch) | |
tree | bacc8f11a07b781e61a0dac3612ce0f3b43c2a1d /plugins/base | |
parent | b29a136721e28e0d6ca5c39d9180020e444b9d30 (diff) | |
download | dokka-e3bf37c0ef8c88755f1d2d15d3ba6d07d649e005.tar.gz dokka-e3bf37c0ef8c88755f1d2d15d3ba6d07d649e005.tar.bz2 dokka-e3bf37c0ef8c88755f1d2d15d3ba6d07d649e005.zip |
Use List for representing classpaths instead of Set
Diffstat (limited to 'plugins/base')
-rw-r--r-- | plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt b/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt index 20fadc5f..a7a20f88 100644 --- a/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt +++ b/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt @@ -8,7 +8,7 @@ val defaultSourceSet = DokkaSourceSetImpl( moduleDisplayName = "DEFAULT", displayName = "DEFAULT", sourceSetID = DokkaSourceSetID("DEFAULT", "DEFAULT"), - classpath = emptySet(), + classpath = emptyList(), sourceRoots = emptySet(), dependentSourceSets = emptySet(), samples = emptySet(), |