src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java

changeset 1743
6a5288a298fd
parent 1741
4c43e51433ba
child 1744
76a691e3e961
     1.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java	Tue May 14 10:14:54 2013 -0700
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java	Tue May 14 10:14:54 2013 -0700
     1.3 @@ -246,7 +246,7 @@
     1.4          if (doc instanceof MethodDoc) {
     1.5              addMethodInfo((MethodDoc) doc, dl);
     1.6          }
     1.7 -        TagletOutputImpl output = new TagletOutputImpl("");
     1.8 +        TagletOutput output = new TagletOutputImpl();
     1.9          TagletWriter.genTagOuput(configuration.tagletManager, doc,
    1.10              configuration.tagletManager.getCustomTags(doc),
    1.11                  getTagletWriterInstance(false), output);
    1.12 @@ -266,7 +266,7 @@
    1.13       * @return true if there are tags to be printed else return false.
    1.14       */
    1.15      protected boolean hasSerializationOverviewTags(FieldDoc field) {
    1.16 -        TagletOutputImpl output = new TagletOutputImpl("");
    1.17 +        TagletOutput output = new TagletOutputImpl();
    1.18          TagletWriter.genTagOuput(configuration.tagletManager, field,
    1.19              configuration.tagletManager.getCustomTags(field),
    1.20                  getTagletWriterInstance(false), output);

mercurial