summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/testData/Deprecations.txt
diff options
context:
space:
mode:
Diffstat (limited to 'plugins/java-decompiler/testData/Deprecations.txt')
-rw-r--r--plugins/java-decompiler/testData/Deprecations.txt42
1 files changed, 0 insertions, 42 deletions
diff --git a/plugins/java-decompiler/testData/Deprecations.txt b/plugins/java-decompiler/testData/Deprecations.txt
deleted file mode 100644
index bb1340e83799..000000000000
--- a/plugins/java-decompiler/testData/Deprecations.txt
+++ /dev/null
@@ -1,42 +0,0 @@
-//
-// Source code recreated from a .class file by IntelliJ IDEA
-// (powered by Fernflower decompiler)
-//
-
-
-public class Deprecations {
-
- /** @deprecated */
- public int byComment;
- /** @deprecated */
- @Deprecated
- public int byAnno;
-
-
- public Deprecations() {
- }
-
- /** @deprecated */
- public void byComment() {
- }
-
- /** @deprecated */
- @Deprecated
- public void byAnno() {
- }
-
- /** @deprecated */
- @Deprecated
- public static class ByAnno {
-
- public ByAnno() {
- }
- }
-
- /** @deprecated */
- public static class ByComment {
-
- public ByComment() {
- }
- }
-}