added fix "replace dot call with safe call" (from Sergey Ignatov)
This commit is contained in:
@@ -0,0 +1,4 @@
|
||||
// "Replace with safe call" "true"
|
||||
fun foo(a: Int?) {
|
||||
a?.plus(1)
|
||||
}
|
||||
@@ -0,0 +1,4 @@
|
||||
// "Replace with safe call" "true"
|
||||
fun foo(a: Int?) {
|
||||
a<caret>.plus(1)
|
||||
}
|
||||
Reference in New Issue
Block a user