diff options
author | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-14 20:21:49 +0100 |
---|---|---|
committer | Dmitry Jemerov <yole@jetbrains.com> | 2015-01-14 20:21:49 +0100 |
commit | fac6872053a009dc083b2f0e487db0b94103d221 (patch) | |
tree | dca1005299c32a08102d6a99627fed8136f29f2b /test/src/TestAPI.kt | |
parent | 6146fa8b996a7d74f58ce1c926c114bc54bda0d1 (diff) | |
download | dokka-fac6872053a009dc083b2f0e487db0b94103d221.tar.gz dokka-fac6872053a009dc083b2f0e487db0b94103d221.tar.bz2 dokka-fac6872053a009dc083b2f0e487db0b94103d221.zip |
use .split(); fix TestAPI compilation
Diffstat (limited to 'test/src/TestAPI.kt')
-rw-r--r-- | test/src/TestAPI.kt | 2 |
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() |