Java to Kotlin converter: generate "!!." instead of "?." for nullable values
#KT-3943 Fixed
This commit is contained in:
@@ -6,6 +6,6 @@ class Foo() {
|
||||
fun foo(o: BitSet?) {
|
||||
val o2: BitSet? = o
|
||||
val foo: Int = 0
|
||||
foo = o2?.size()!!
|
||||
foo = o2!!.size()
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user