Reformat kotlin-gradle-plugin according to code style

This commit is contained in:
Alexey Tsvetkov
2018-10-17 15:52:50 +03:00
parent 47b8e54f84
commit a44d70e79d
64 changed files with 696 additions and 573 deletions
@@ -194,7 +194,9 @@ private fun Printer.generateImpl(
generatePropertyDeclaration(property, modifiers = "override")
withIndent {
println("get() = $backingField ?: ${property.gradleDefaultValue}")
println("set(value) { $backingField = value }")
println("set(value) {")
withIndent { println("$backingField = value") }
println("}")
}
}