We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3fc6eda commit 089ad0fCopy full SHA for 089ad0f
src/main/java/com/falsepattern/lib/DeprecationDetails.java
@@ -35,4 +35,14 @@
35
public @interface DeprecationDetails {
36
@StableAPI.Expose String deprecatedSince();
37
@StableAPI.Expose(since = "0.11.0") String replacement() default "";
38
+
39
+ /**
40
+ * This marks an API for removal in a future version.
41
+ */
42
+ @Documented
43
+ @Retention(RetentionPolicy.RUNTIME)
44
+ @StableAPI(since = "0.12.0")
45
+ @interface RemovedInVersion {
46
+ String value();
47
+ }
48
}
0 commit comments