Formatter: Fix spacing between '=' and '{' in property accessors
This commit is contained in:
@@ -1,4 +1,4 @@
|
||||
val foo: String
|
||||
get() {
|
||||
get() {
|
||||
return "abc"
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
// WITH_RUNTIME
|
||||
|
||||
val foo: String
|
||||
get() {
|
||||
get() {
|
||||
throw UnsupportedOperationException()
|
||||
}
|
||||
|
||||
@@ -1,6 +1,6 @@
|
||||
var foo: String
|
||||
get() = "abc"
|
||||
set(value) {
|
||||
set(value) {
|
||||
doSet(value)
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user