Files
openide/java/java-tests/testData/inspection/redundantScheduledForRemoval/RemoveScheduledForRemoval.java
Nikolay Chashnikov 3d6b5d2c09 [java] "Redundant ScheduledForRemoval annotation" inspection: don't show warning if 'inVersion' attribute is specified
It isn't possible to specify version where removal is planned via Deprecated annotation (IJ-CR-20718).

GitOrigin-RevId: 2f524b26c7d5d41ad0c251e52cd9ecead1fde54b
2022-02-16 14:03:17 +00:00

7 lines
231 B
Java

import org.jetbrains.annotations.ApiStatus;
<warning descr="@ScheduledForRemoval annotation can be removed">@<caret>ApiStatus.ScheduledForRemoval</warning>
@Deprecated(forRemoval = true)
public class RemoveScheduledForRemoval {
}