Anybody knows how to write a `@Deprecated(..., Rep...
# announcements
r
Anybody knows how to write a
@Deprecated(..., ReplaceWith("OtherClass(arg1, arg2"))
which takes the type parameter of the deprecated class into account? Currently it adds it oddly to the replace with transformation, it results in
OtherClass<T>
even though I have not specified
<T>
in the
ReplaceWith
i
r
that's a pity but good to know