From fac6872053a009dc083b2f0e487db0b94103d221 Mon Sep 17 00:00:00 2001 From: Dmitry Jemerov Date: Wed, 14 Jan 2015 20:21:49 +0100 Subject: use .split(); fix TestAPI compilation --- test/src/TestAPI.kt | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'test/src') 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()) val documentation = environment.withContext { environment, session -> val fragments = environment.getSourceFiles().map { session.getPackageFragment(it.getPackageFqName()) }.filterNotNull().distinct() -- cgit