Hi I’m used to `Unwrap/Remove` action in Java. But...
# intellij
p
Hi I’m used to
Unwrap/Remove
action in Java. But in Kotlin it looks like not working properly. Let’s give an example: There is a function
Copy code
private fun normalized(color: String): String { /* … */ }
and statement
Copy code
return ActivityColor(normalized(color))
Now, my intention is to unwrap
color
from
normailzed(…)
call, so I put a cursor on
color
and run
Unwrap/Remove
action. There is only statement to choose in popup and it offers me removal of a whole line statement