< prev index next >

src/java.xml.ws/share/classes/com/sun/xml/internal/ws/commons/xmlutil/Converter.java

Print this page

        

@@ -196,11 +196,11 @@
 
     /**
      * Wraps {@link javax.xml.stream.XMLStreamWriter} by an indentation engine if possible.
      *
      * <p>
-     * We can do this only when we have <tt>stax-utils.jar</tt> in the class path.
+     * We can do this only when we have {@code stax-utils.jar} in the class path.
      */
     private static XMLStreamWriter createIndenter(XMLStreamWriter writer) {
         try {
             Class<?> clazz = Converter.class.getClassLoader().loadClass("javanet.staxutils.IndentingXMLStreamWriter");
             Constructor<?> c = clazz.getConstructor(XMLStreamWriter.class);
< prev index next >