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

changeset 1737
7a9ef837e57f
parent 1736
74cd21f2c2fe
child 1742
7af0fa419a2b
     1.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/TagletWriterImpl.java	Tue May 14 10:14:52 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 @@ -180,8 +180,7 @@
     1.4                      ((ClassWriterImpl) htmlWriter).getClassDoc().qualifiedName() + "." + ((FieldDoc) holder).name();
     1.5              DocLink link = constantsPath.fragment(whichConstant);
     1.6              result += htmlWriter.getHyperLinkString(link,
     1.7 -                    configuration.getText("doclet.Constants_Summary"),
     1.8 -                    false);
     1.9 +                    configuration.getText("doclet.Constants_Summary"));
    1.10          }
    1.11          if (holder.isClass() && ((ClassDoc)holder).isSerializable()) {
    1.12              //Automatically add link to serialized form page for serializable classes.
    1.13 @@ -191,7 +190,7 @@
    1.14                  DocPath serialPath = htmlWriter.pathToRoot.resolve(DocPaths.SERIALIZED_FORM);
    1.15                  DocLink link = serialPath.fragment(((ClassDoc)holder).qualifiedName());
    1.16                  result += htmlWriter.getHyperLinkString(link,
    1.17 -                        configuration.getText("doclet.Serialized_Form"), false);
    1.18 +                        configuration.getText("doclet.Serialized_Form"));
    1.19              }
    1.20          }
    1.21          return result.equals("") ? null : new TagletOutputImpl(result + "</dd>");

mercurial