< prev index next >

src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/builders/ModuleSummaryBuilder.java

Print this page

        

@@ -178,21 +178,21 @@
      *
      * @param moduleContentTree the tree to which the module description will
      *                           be added
      */
     protected void buildModuleDescription(Content moduleContentTree) {
-        if (!configuration.nocomment) {
+        if (!options.noComment) {
             moduleWriter.addModuleDescription(moduleContentTree);
         }
     }
 
     /**
      * Build the tags of the summary.
      *
      * @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);
         }
     }
 }
< prev index next >