Java to Kotlin converter: generate "!!." instead of "?." for nullable values
#KT-3943 Fixed
This commit is contained in:
@@ -1,3 +1,3 @@
|
||||
val s = null
|
||||
if (!s?.isEmpty()!!) {
|
||||
if (!s!!.isEmpty()) {
|
||||
}
|
||||
Reference in New Issue
Block a user