-
Notifications
You must be signed in to change notification settings - Fork 134
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
@SuppressWarnings("removal") does not work #3402
Comments
After deprecation for removal that method would now need a |
That's what I would expect that it still complains (but need a different suppress. |
Could anyone from JDT please have a look at this? The case described above is causing build-failures in PDE due to new warnings and actually I don't want to remove the suppression now just to add it back later when this is fixed. If you can point me to the place where this can be fixed, I can also have a look by myself. |
See call sites of
In general a good way to find out where different things happen in ECJ is to plant a breakpoint in EVERY Error/Warning/Info diagnostics go through this method. So plant a breakpoint there and give the compiler some workload that would trigger a "relevant" message. Call stack points to the smoking gun 😄 (Sorry that I am personally not able to jump on this task - I am trying to wrap up Enhanced switches redesign/reimplementation before the year end holidays) Good luck. I am available to review PRs though |
If I look at
org.eclipse.pde.internal.core.product.ArgumentsInfo
it has
but eclipse claims
so far so good, then we can remove it, but now I don't get any warning at all even though a
forRemoval
should be even more servethis was recently changed here:
The text was updated successfully, but these errors were encountered: