Remove unused function parameter: do not propose for property setter parameter

#KT-29606 Fixed
This commit is contained in:
Toshiaki Kameyama
2019-01-31 22:50:28 +09:00
committed by Mikhail Glukhikh
parent 5b0d1bb6e4
commit 804e03379d
3 changed files with 16 additions and 1 deletions
@@ -0,0 +1,7 @@
// "Remove parameter 'value'" "false"
// ACTION: Specify type explicitly
class Abacaba {
var foo: String
get() = ""
set(<caret>value) {}
}