From e3bf37c0ef8c88755f1d2d15d3ba6d07d649e005 Mon Sep 17 00:00:00 2001 From: "sebastian.sellmair" Date: Thu, 13 Aug 2020 19:54:42 +0200 Subject: Use List for representing classpaths instead of Set --- plugins/base/test-utils/src/main/kotlin/renderers/defaultSourceSet.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'plugins/base/test-utils/src') 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(), -- cgit