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

changeset 2006
044721d4d359
parent 1995
dd64288f5659
child 2035
a2a5ad0853ed
     1.1 --- a/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java	Wed Sep 04 11:53:09 2013 +0100
     1.2 +++ b/src/share/classes/com/sun/tools/doclets/formats/html/HtmlDocletWriter.java	Wed Sep 04 14:44:05 2013 -0700
     1.3 @@ -406,10 +406,7 @@
     1.4          Content htmlDocType = DocType.TRANSITIONAL;
     1.5          Content htmlComment = new Comment(configuration.getText("doclet.New_Page"));
     1.6          Content head = new HtmlTree(HtmlTag.HEAD);
     1.7 -        if (!configuration.notimestamp) {
     1.8 -            Content headComment = new Comment(getGeneratedByString());
     1.9 -            head.addContent(headComment);
    1.10 -        }
    1.11 +        head.addContent(getGeneratedBy(!configuration.notimestamp));
    1.12          if (configuration.charset.length() > 0) {
    1.13              Content meta = HtmlTree.META("Content-Type", CONTENT_TYPE,
    1.14                      configuration.charset);

mercurial