Bug 579016 - @SuppressWarnings("removal") not sufficient for Eclipse but sufficient for javac
Summary: @SuppressWarnings("removal") not sufficient for Eclipse but sufficient for javac
Status: NEW
Alias: None
Product: JDT
Classification: Eclipse Project
Component: APT (show other bugs)
Version: 4.22   Edit
Hardware: PC Linux
: P3 normal (vote)
Target Milestone: ---   Edit
Assignee: Generic inbox for the JDT-APT component CLA
QA Contact:
URL:
Whiteboard: stalebug
Keywords:
Depends on:
Blocks:
 
Reported: 2022-03-01 03:30 EST by Patrick Peer CLA
Modified: 2024-02-22 15:26 EST (History)
0 users

See Also:


Attachments

Note You need to log in before you can comment on or make changes to this bug.
Description Patrick Peer CLA 2022-03-01 03:30:37 EST
Consider the following code snippet

import java.security.AccessController;
import java.security.PrivilegedAction;

@SuppressWarnings("removal")
public class UnusedDeprecationDemo {
	
	public void doSomethingPrivileged() {
		AccessController.doPrivileged((PrivilegedAction<String>) () -> "Privileged String");
	}
}


Using JDK 17, this yields a warning "The method doPrivileged(PrivilegedAction<String>) from the type AccessController is deprecated" in Eclipse. However, javac -Werror UnusedDeprecationDemo.java works perfectly fine.
Comment 1 Patrick Peer CLA 2022-03-01 03:43:33 EST
I just realized that the warning is only shown in the Java-Editor. The Problems listing does not contain it (as it should be).
Comment 2 Eclipse Genie CLA 2024-02-22 15:26:56 EST
This bug hasn't had any activity in quite some time. Maybe the problem got resolved, was a duplicate of something else, or became less pressing for some reason - or maybe it's still relevant but just hasn't been looked at yet.

If you have further information on the current state of the bug, please add it. The information can be, for example, that the problem still occurs, that you still want the feature, that more information is needed, or that the bug is (for whatever reason) no longer relevant.

--
The automated Eclipse Genie.