equal
deleted
inserted
replaced
21 * questions. |
21 * questions. |
22 */ |
22 */ |
23 |
23 |
24 /* |
24 /* |
25 * @test /nodynamiccopyright/ |
25 * @test /nodynamiccopyright/ |
26 * @bug 8020664 |
26 * @bug 8020664 8021215 |
27 * @summary doclint gives incorrect warnings on normal package statements |
27 * @summary doclint gives incorrect warnings on normal package statements |
28 * @library ../.. |
28 * @library ../.. |
29 * @build DocLintTester |
29 * @build DocLintTester |
30 * @run main DocLintTester Test.java |
30 * @run main DocLintTester Test.java |
|
31 * @compile -Xdoclint:all Test.java |
31 */ |
32 */ |
32 |
33 |
33 // no doc comment |
34 // no doc comment |
34 package good; |
35 package good; |
35 |
36 |
|
37 /** */ |
36 class Test { } |
38 class Test { } |
37 |
39 |