summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/testData/Deprecations.java
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/java-decompiler/testData/Deprecations.java')
-rw-r--r--plugins/java-decompiler/testData/Deprecations.java19
1 files changed, 0 insertions, 19 deletions
diff --git a/plugins/java-decompiler/testData/Deprecations.java b/plugins/java-decompiler/testData/Deprecations.java
deleted file mode 100644
index 838ff68131de..000000000000
--- a/plugins/java-decompiler/testData/Deprecations.java
+++ /dev/null
@@ -1,19 +0,0 @@
-public class Deprecations {
- /** @deprecated */
- public int byComment;
-
- @Deprecated
- public int byAnno;
-
- /** @deprecated */
- public void byComment() { }
-
- @Deprecated
- public void byAnno() { }
-
- /** @deprecated */
- public static class ByComment { }
-
- @Deprecated
- public static class ByAnno { }
-} \ No newline at end of file