aboutsummaryrefslogtreecommitdiffstats
path: root/tests/options/WarnDeprecated.java
blob: 2d0d928a782bca2f999a529722a1af9a04e0634b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
public class WarnDeprecated {

    /** @deprecated */
    public static void main(String[] args) {
       if (null == args) {
            main(new String[0]); // CE 10 deprecated if warn:deprecated
       }
    }
}