test/tools/doclint/tidy/MissingTag.java

Mon, 23 Sep 2013 17:27:38 +0400

author
kizune
date
Mon, 23 Sep 2013 17:27:38 +0400
changeset 2048
809a50f24d6f
parent 1465
a22f23fb7abf
child 2525
2eb010b6cb22
permissions
-rw-r--r--

7154966: CRs found to be in Fixed state with no test and no noreg- keyword.
Reviewed-by: ksrini

jjg@1455 1 /*
jjg@1455 2 * @test /nodynamiccopyright/
jjg@1465 3 * @bug 8004832
jjg@1465 4 * @summary Add new doclint package
jjg@1455 5 * @library ..
jjg@1455 6 * @build DocLintTester
jjg@1455 7 * @run main DocLintTester -ref MissingTag.out MissingTag.java
jjg@1455 8 */
jjg@1455 9
jjg@1455 10 // tidy: Warning: missing <.*>
jjg@1455 11 // tidy: Warning: missing </.*> before </.*>
jjg@1455 12
jjg@1455 13 /**
jjg@1455 14 * </p>
jjg@1455 15 * <h1> <b> text </h1>
jjg@1455 16 */
jjg@1455 17 public class MissingTag { }

mercurial