1
0
Fork 0
mirror of https://github.com/ethauvin/kobalt.git synced 2025-04-26 00:17:11 -07:00

Simplify.

This commit is contained in:
Cedric Beust 2015-11-16 09:31:38 -08:00
parent c70ce4247d
commit b2dd509d4f

View file

@ -71,11 +71,9 @@ class DokkaConfig() {
@Directive
fun linkMapping(init: LinkMappingConfig.() -> Unit) {
let { project ->
linkMapping = LinkMappingConfig().let {
it.init()
it
}
linkMapping = LinkMappingConfig().let {
it.init()
it
}
}
}