src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AbstractMemberWriter.java
changeset 47847 7640bc1eb94f
parent 47846 4e78aba768f0
child 47850 4a28dc8a86c2
equal deleted inserted replaced
47846:4e78aba768f0 47847:7640bc1eb94f
   590         if (tElement != typeElement) {
   590         if (tElement != typeElement) {
   591             throw new IllegalStateException();
   591             throw new IllegalStateException();
   592         }
   592         }
   593         Table table = getSummaryTable();
   593         Table table = getSummaryTable();
   594         if (table.needsScript()) {
   594         if (table.needsScript()) {
   595             writer.getScript().addContent(table.getScript());
   595             writer.getMainBodyScript().append(table.getScript());
   596         }
   596         }
   597         return table.toContent();
   597         return table.toContent();
   598     }
   598     }
   599 
   599 
   600     /**
   600     /**