summaryrefslogtreecommitdiff
path: root/plugins/java-decompiler/testData/Deprecations.txt
blob: bb1340e83799273669021a861681ff0ffc610fd3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
//
// 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() {
        }
    }
}