langtools/test/tools/doclint/tidy/TrimmingEmptyTag.java
author jjg
Thu, 20 Dec 2012 17:59:46 +0000
changeset 14962 19ffdfafbcd2
parent 14952 d0022ae20516
child 21017 f61558e07e14
permissions -rw-r--r--
8005307: fix missing @bug tags Reviewed-by: jjh

/*
 * @test /nodynamiccopyright/
 * @bug 8004832
 * @summary Add new doclint package
 * @library ..
 * @build DocLintTester
 * @run main DocLintTester -ref TrimmingEmptyTag.out TrimmingEmptyTag.java
 */

// tidy: Warning: trimming empty <.*>

/**
 * <b></b>
 * <table summary=description></table>
 * <table><caption></caption></table>
 * <code></code>
 * <dl></dl>
 * <dl><dt></dt><dd></dd></dl>
 * <font></font>
 * <i></i>
 * <ol></ol>
 * <p></p>
 * <pre></pre>
 * <span></span>
 * <tt></tt>
 * <ul></ul>
 * <ul><li></li></ul>
 */
public class TrimmingEmptyTag { }