--- old/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/ModuleSummaryBuilder.java 2020-01-21 10:51:17.828935521 -0800 +++ new/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/ModuleSummaryBuilder.java 2020-01-21 10:51:17.508921382 -0800 @@ -180,7 +180,7 @@ * be added */ protected void buildModuleDescription(Content moduleContentTree) { - if (!configuration.nocomment) { + if (!options.noComment) { moduleWriter.addModuleDescription(moduleContentTree); } } @@ -191,7 +191,7 @@ * @param moduleContentTree the tree to which the module tags will be added */ protected void buildModuleTags(Content moduleContentTree) { - if (!configuration.nocomment) { + if (!options.noComment) { moduleWriter.addModuleTags(moduleContentTree); } }