Remove setter parameter type: do not suggest if type is empty

So #KT-22339 Fixed
This commit is contained in:
Mikhail Glukhikh
2018-01-18 15:02:55 +03:00
parent f0b172ca35
commit 512e287f3a
4 changed files with 51 additions and 24 deletions
@@ -0,0 +1 @@
org.jetbrains.kotlin.idea.inspections.RemoveSetterParameterTypeInspection
@@ -0,0 +1,7 @@
// PROBLEM: none
// SKIP_ERRORS_BEFORE
// SKIP_ERRORS_AFTER
var x: String
get() = "123"
set(v:<caret> ) {}