--- old/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AbstractOverviewIndexWriter.java 2020-01-17 17:34:43.537155557 -0800 +++ new/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AbstractOverviewIndexWriter.java 2020-01-17 17:34:43.213141349 -0800 @@ -141,7 +141,7 @@ .setFooter(footer) .toContent()); printHtmlDocument( - configuration.metakeywords.getOverviewMetaKeywords(title, configuration.doctitle), + configuration.metakeywords.getOverviewMetaKeywords(title, configuration.getOptions().docTitle), description, body); } @@ -158,8 +158,9 @@ * @param body the document tree to which the title will be added */ protected void addConfigurationTitle(Content body) { - if (configuration.doctitle.length() > 0) { - Content title = new RawHtml(configuration.doctitle); + String doctitle = configuration.getOptions().docTitle; + if (doctitle.length() > 0) { + Content title = new RawHtml(doctitle); Content heading = HtmlTree.HEADING(Headings.PAGE_TITLE_HEADING, HtmlStyle.title, title); Content div = HtmlTree.DIV(HtmlStyle.header, heading);