aboutsummaryrefslogtreecommitdiff
path: root/plugins/all-modules-page/src/main
diff options
context:
space:
mode:
authorKamil Doległo <9080183+kamildoleglo@users.noreply.github.com>2021-03-04 17:20:31 +0100
committerGitHub <noreply@github.com>2021-03-04 17:20:31 +0100
commitb298da4ce1a55a6f69e7ed00020ed3af558f3750 (patch)
treea404dc86e05815cb250b5b7d027e0cb095e95f6a /plugins/all-modules-page/src/main
parent2717e8505a41e188d209b81a3150a16c64ca7239 (diff)
downloaddokka-b298da4ce1a55a6f69e7ed00020ed3af558f3750.tar.gz
dokka-b298da4ce1a55a6f69e7ed00020ed3af558f3750.tar.bz2
dokka-b298da4ce1a55a6f69e7ed00020ed3af558f3750.zip
Fix memory leak caused by coroutines (#1751)
* Fix memory leak caused by coroutines * Catch all exceptions that might fail the build Co-authored-by: Marcin Aman <marcin.aman@gmail.com>
Diffstat (limited to 'plugins/all-modules-page/src/main')
-rw-r--r--plugins/all-modules-page/src/main/kotlin/AllModulesPageGeneration.kt2
1 files changed, 1 insertions, 1 deletions
diff --git a/plugins/all-modules-page/src/main/kotlin/AllModulesPageGeneration.kt b/plugins/all-modules-page/src/main/kotlin/AllModulesPageGeneration.kt
index c11b18b2..21c624ef 100644
--- a/plugins/all-modules-page/src/main/kotlin/AllModulesPageGeneration.kt
+++ b/plugins/all-modules-page/src/main/kotlin/AllModulesPageGeneration.kt
@@ -70,4 +70,4 @@ class AllModulesPageGeneration(private val context: DokkaContext) : Generation {
data class DefaultAllModulesContext(val nonEmptyModules: List<String>) : CreationContext {
constructor(templating: TemplatingResult) : this(templating.modules)
}
-} \ No newline at end of file
+}