aboutsummaryrefslogtreecommitdiff
path: root/plugins/base/test-utils
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/base/test-utils')
-rw-r--r--plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt14
1 files changed, 7 insertions, 7 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 7358d2c2..8d19870c 100644
--- a/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt
+++ b/plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt
@@ -8,24 +8,24 @@ val defaultSourceSet = DokkaSourceSetImpl(
moduleDisplayName = "DEFAULT",
displayName = "DEFAULT",
sourceSetID = DokkaSourceSetID("DEFAULT", "DEFAULT"),
- classpath = emptyList(),
- sourceRoots = emptyList(),
+ classpath = emptySet(),
+ sourceRoots = emptySet(),
dependentSourceSets = emptySet(),
- samples = emptyList(),
- includes = emptyList(),
+ samples = emptySet(),
+ includes = emptySet(),
includeNonPublic = false,
includeRootPackage = false,
reportUndocumented = false,
skipEmptyPackages = true,
skipDeprecated = false,
jdkVersion = 8,
- sourceLinks = emptyList(),
+ sourceLinks = emptySet(),
perPackageOptions = emptyList(),
- externalDocumentationLinks = emptyList(),
+ externalDocumentationLinks = emptySet(),
languageVersion = null,
apiVersion = null,
noStdlibLink = false,
noJdkLink = false,
- suppressedFiles = emptyList(),
+ suppressedFiles = emptySet(),
analysisPlatform = Platform.DEFAULT
)