pawel.barszcz
11/13/2016, 10:54 AMUnwrap/Remove
action in Java. But in Kotlin it looks like not working properly. Let’s give an example:
There is a function
private fun normalized(color: String): String { /* … */ }
and statement
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