test/jdk/javadoc/doclet/testParamTaglet/TestParamTaglet.java

Print this page

        

@@ -53,14 +53,14 @@
                 "<span class=\"paramLabel\">Parameters:</span></dt>\n"
                 + "<dd><code>param1</code> - testing 1 2 3.</dd>\n"
                 + "<dd><code>param2</code> - testing 1 2 3.",
                 //Param tags that don't match with any real parameters.
                 "<span class=\"paramLabel\">Parameters:</span></dt>\n"
-                + "<dd><code><I>p1</I></code> - testing 1 2 3.</dd>\n"
-                + "<dd><code><I>p2</I></code> - testing 1 2 3.",
+                + "<dd><code>p1</code> - testing 1 2 3.</dd>\n"
+                + "<dd><code>p2</code> - testing 1 2 3.",
                 //{@inherit} doc misuse does not cause doclet to throw exception.
                 // Param is printed with nothing inherited.
                 //XXX: in the future when Configuration is available during doc inheritence,
                 //print a warning for this mistake.
-                "<code><I>inheritBug</I></code> -");
+                "<code>inheritBug</code> -");
     }
 }