FIR IDE: Enable RemoveExclExclCallFix for UNNECESSARY_NON_NULL_ASSERTION.

This commit is contained in:
Mark Punzalan
2021-04-14 20:28:21 +00:00
committed by Ilya Kirillov
parent 34609b264d
commit 73b796f184
8 changed files with 5 additions and 25 deletions
@@ -2,5 +2,3 @@
fun test(value : Int) : Int {
return value<caret>!!
}
/* IGNORE_FIR */
@@ -2,5 +2,3 @@
fun test(value : Int) : Int {
return value<caret>
}
/* IGNORE_FIR */
@@ -2,5 +2,3 @@
fun test(value : String) {
value!!<caret>.equals("test")
}
/* IGNORE_FIR */
@@ -2,5 +2,3 @@
fun test(value : String) {
value<caret>.equals("test")
}
/* IGNORE_FIR */
@@ -2,5 +2,3 @@
fun test(value : String) : Int {
return value<caret>!!.length
}
/* IGNORE_FIR */
@@ -2,5 +2,3 @@
fun test(value : String) : Int {
return value<caret>.length
}
/* IGNORE_FIR */