FIR IDE: RemoveNulalbleFix quickfix
This commit is contained in:
committed by
Ilya Kirillov
parent
b10de3dd2d
commit
4bedf41f9c
+1
-2
@@ -2,5 +2,4 @@
|
||||
|
||||
class A() {
|
||||
<caret>lateinit var foo: String?
|
||||
}
|
||||
/* IGNORE_FIR */
|
||||
}
|
||||
+1
-2
@@ -2,5 +2,4 @@
|
||||
|
||||
class A() {
|
||||
<caret>lateinit var foo: String
|
||||
}
|
||||
/* IGNORE_FIR */
|
||||
}
|
||||
@@ -2,3 +2,5 @@
|
||||
fun main(args : Array<String>) {
|
||||
val x : Int??<caret> = 15
|
||||
}
|
||||
|
||||
/* IGNORE_FIR */
|
||||
@@ -2,3 +2,5 @@
|
||||
fun main(args : Array<String>) {
|
||||
val x : Int? = 15
|
||||
}
|
||||
|
||||
/* IGNORE_FIR */
|
||||
@@ -1,4 +1,5 @@
|
||||
// "Remove useless '?'" "true"
|
||||
fun f(a: Int) : Boolean {
|
||||
return a is Int?<caret>
|
||||
}
|
||||
}
|
||||
/* IGNORE_FIR */
|
||||
@@ -1,4 +1,5 @@
|
||||
// "Remove useless '?'" "true"
|
||||
fun f(a: Int) : Boolean {
|
||||
return a is Int<caret>
|
||||
}
|
||||
}
|
||||
/* IGNORE_FIR */
|
||||
Reference in New Issue
Block a user