test/tools/doclint/tidy/TrimmingEmptyTag.java

Mon, 17 Dec 2012 07:47:05 -0800

author
jjg
date
Mon, 17 Dec 2012 07:47:05 -0800
changeset 1455
75ab654b5cd5
child 1465
a22f23fb7abf
permissions
-rw-r--r--

8004832: Add new doclint package
Reviewed-by: mcimadamore

     1 /*
     2  * @test /nodynamiccopyright/
     3  * @library ..
     4  * @build DocLintTester
     5  * @run main DocLintTester -ref TrimmingEmptyTag.out TrimmingEmptyTag.java
     6  */
     8 // tidy: Warning: trimming empty <.*>
    10 /**
    11  * <b></b>
    12  * <table summary=description></table>
    13  * <table><caption></caption></table>
    14  * <code></code>
    15  * <dl></dl>
    16  * <dl><dt></dt><dd></dd></dl>
    17  * <font></font>
    18  * <i></i>
    19  * <ol></ol>
    20  * <p></p>
    21  * <pre></pre>
    22  * <span></span>
    23  * <tt></tt>
    24  * <ul></ul>
    25  * <ul><li></li></ul>
    26  */
    27 public class TrimmingEmptyTag { }

mercurial