diff options
author | Roman Elizarov <elizarov@gmail.com> | 2017-12-22 16:15:02 +0300 |
---|---|---|
committer | Simon Ogorodnik <simon.ogorodnik@gmail.com> | 2017-12-22 16:21:12 +0300 |
commit | 4a425e29fba4030d9cde7072ee6bf39ab7ae3668 (patch) | |
tree | 34a2ec8c5a51a79e3f02fba0eee1025b84568139 /core | |
parent | dcaa940db179cf346f9a0e8f98988d17a3cb2719 (diff) | |
download | dokka-4a425e29fba4030d9cde7072ee6bf39ab7ae3668.tar.gz dokka-4a425e29fba4030d9cde7072ee6bf39ab7ae3668.tar.bz2 dokka-4a425e29fba4030d9cde7072ee6bf39ab7ae3668.zip |
Supports hacks for MPP documentation generation
Diffstat (limited to 'core')
-rw-r--r-- | core/src/main/kotlin/Analysis/AnalysisEnvironment.kt | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/core/src/main/kotlin/Analysis/AnalysisEnvironment.kt b/core/src/main/kotlin/Analysis/AnalysisEnvironment.kt index 3b9b9149..56249ac4 100644 --- a/core/src/main/kotlin/Analysis/AnalysisEnvironment.kt +++ b/core/src/main/kotlin/Analysis/AnalysisEnvironment.kt @@ -114,15 +114,15 @@ class AnalysisEnvironment(val messageCollector: MessageCollector) : Disposable { val javaRoots = classpath - .map { + .mapNotNull { val rootFile = when { it.extension == "jar" -> - StandardFileSystems.jar().findFileByPath("${it.absolutePath}${URLUtil.JAR_SEPARATOR}")!! + StandardFileSystems.jar().findFileByPath("${it.absolutePath}${URLUtil.JAR_SEPARATOR}") else -> - StandardFileSystems.local().findFileByPath(it.absolutePath)!! + StandardFileSystems.local().findFileByPath(it.absolutePath) } - JavaRoot(rootFile, JavaRoot.RootType.BINARY) + rootFile?.let { JavaRoot(it, JavaRoot.RootType.BINARY) } } val resolverForProject = ResolverForProjectImpl( |