diff -r 000000000000 -r 959103a6100f test/tools/doclint/tidy/TrimmingEmptyTag.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/test/tools/doclint/tidy/TrimmingEmptyTag.java Wed Apr 27 01:34:52 2016 +0800 @@ -0,0 +1,34 @@ +/* + * @test /nodynamiccopyright/ + * @bug 8004832 8026368 + * @summary Add new doclint package + * @library .. + * @build DocLintTester + * @run main DocLintTester -ref TrimmingEmptyTag.out TrimmingEmptyTag.java + */ + +// tidy: Warning: trimming empty <.*> + +/** + * + *
+ *
+ * + *
+ *
+ * + * + *
    + *

    + *
    
    + * 
    + * 
    + * 
    + * 
    + */
    +public class TrimmingEmptyTag {
    +    /** 

    */ + public void implicitParaEnd_endOfComment() { } + /**

    */ + public void implicitParaEnd_nextBlockTag() { } +}