aboutsummaryrefslogtreecommitdiff
path: root/test
diff options
context:
space:
mode:
authorDmitry Jemerov <yole@jetbrains.com>2015-01-14 20:21:49 +0100
committerDmitry Jemerov <yole@jetbrains.com>2015-01-14 20:21:49 +0100
commitfac6872053a009dc083b2f0e487db0b94103d221 (patch)
treedca1005299c32a08102d6a99627fed8136f29f2b /test
parent6146fa8b996a7d74f58ce1c926c114bc54bda0d1 (diff)
downloaddokka-fac6872053a009dc083b2f0e487db0b94103d221.tar.gz
dokka-fac6872053a009dc083b2f0e487db0b94103d221.tar.bz2
dokka-fac6872053a009dc083b2f0e487db0b94103d221.zip
use .split(); fix TestAPI compilation
Diffstat (limited to 'test')
-rw-r--r--test/src/TestAPI.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/src/TestAPI.kt b/test/src/TestAPI.kt
index 4d64014e..f3c5f8c8 100644
--- a/test/src/TestAPI.kt
+++ b/test/src/TestAPI.kt
@@ -32,7 +32,7 @@ public fun verifyModel(vararg files: String, verifier: (DocumentationModule) ->
addSources(files.toList())
}
- val options = DocumentationOptions(includeNonPublic = true)
+ val options = DocumentationOptions(includeNonPublic = true, sourceLinks = listOf<SourceLinkDefinition>())
val documentation = environment.withContext { environment, session ->
val fragments = environment.getSourceFiles().map { session.getPackageFragment(it.getPackageFqName()) }.filterNotNull().distinct()