what is right approach for `ReplaceWith` in `@Depr...
# announcements
t
what is right approach for
ReplaceWith
in
@Depreacted
annotation for properties? I want to update from:
Copy code
val someField = someValue
to
Copy code
val someFields = arrayOf(someValue)
Using
ReplaceWith("val someFields = arrayOf(x)")
produces
val someFields = arrayOf(x)
on IDEA action 😞
i
Where do you place
@Deprecated
-- on the property?