Remove spaces between accessor and its parameter list in formatter (KT-30393)
#KT-30393 Fixed
This commit is contained in:
committed by
Nikolay Krasko
parent
0acecb4936
commit
e1f26ffc74
+2
-2
@@ -1,9 +1,9 @@
|
||||
class Test {
|
||||
var test: Int
|
||||
get () {
|
||||
get() {
|
||||
return 0
|
||||
}
|
||||
set (value) {
|
||||
set(value) {
|
||||
throw NotSupportedException()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user