You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The linked method is actually called in the implementation of the deprecated method
This obviously is almost never the case for interfaces, but actually these are quite often deprecated in interface based designs. It would therefore be great is interfaces that deprecate one method and reference another one could also be supported.
This might have some limitations e.g.
Only work if the new method has the same signature but a different name/target type
Has less arguments than the old one (e.g. like done with the quickfix to remove parameters)
....
The text was updated successfully, but these errors were encountered:
With 4.30 there was this cool feature added:
https://eclipse.dev/eclipse/news/4.30/jdt.html#deprecated-cleanup
but it has an limitation:
This obviously is almost never the case for interfaces, but actually these are quite often deprecated in interface based designs. It would therefore be great is interfaces that deprecate one method and reference another one could also be supported.
This might have some limitations e.g.
The text was updated successfully, but these errors were encountered: