Files
kotlin-fork/nj2k/testData/newJ2k/annotations/java9Deprecated.java
T
Alex Chmyr 16c82030a3 KT-20120 fixing bug for Java 9 Deprecated
Unconditionally changing it to @Deprecated("") in kotlin
2020-01-10 11:45:17 +03:00

8 lines
344 B
Java
Vendored

public class Deprecation {
@Deprecated() public void deprecate00() {}
@Deprecated(forRemoval = false) public void deprecate10() {}
@Deprecated(forRemoval = true) public void deprecate20() {}
@Deprecated(since = "2.0") public void deprecate01() {}
@Deprecated(forRemoval = true, since = "2.0") public void deprecate21() {}
}