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

changeset 1736
74cd21f2c2fe
parent 1735
8ea30d59ac41
child 1737
7a9ef837e57f
     1.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java	Tue May 14 10:14:51 2013 -0700
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java	Tue May 14 10:14:52 2013 -0700
     1.3 @@ -248,7 +248,7 @@
     1.4              htmlWriter.codeText(throwsTag.exceptionName()) :
     1.5              htmlWriter.codeText(
     1.6                  htmlWriter.getLink(new LinkInfoImpl(configuration, LinkInfoImpl.Kind.MEMBER,
     1.7 -                throwsTag.exceptionType())));
     1.8 +                throwsTag.exceptionType())).toString());
     1.9          TagletOutput text = new TagletOutputImpl(
    1.10              htmlWriter.commentTagsToString(throwsTag, null,
    1.11              throwsTag.inlineTags(), false));
    1.12 @@ -265,7 +265,7 @@
    1.13      public TagletOutput throwsTagOutput(Type throwsType) {
    1.14          return new TagletOutputImpl(DocletConstants.NL + "<dd>" +
    1.15              htmlWriter.codeText(htmlWriter.getLink(
    1.16 -                new LinkInfoImpl(configuration, LinkInfoImpl.Kind.MEMBER, throwsType))) + "</dd>");
    1.17 +                new LinkInfoImpl(configuration, LinkInfoImpl.Kind.MEMBER, throwsType)).toString()) + "</dd>");
    1.18      }
    1.19  
    1.20      /**
    1.21 @@ -275,7 +275,7 @@
    1.22              boolean includeLink) {
    1.23          return new TagletOutputImpl(includeLink ?
    1.24              htmlWriter.getDocLink(LinkInfoImpl.Kind.VALUE_TAG, field,
    1.25 -                constantVal, false) : constantVal);
    1.26 +                constantVal, false).toString() : constantVal);
    1.27      }
    1.28  
    1.29      /**

mercurial