--- old/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AnnotationTypeWriterImpl.java 2020-01-21 10:50:49.495683663 -0800 +++ new/src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/AnnotationTypeWriterImpl.java 2020-01-21 10:50:49.171669346 -0800 @@ -187,7 +187,7 @@ LinkInfoImpl.Kind.CLASS_SIGNATURE, annotationType); Content annotationName = new StringContent(utils.getSimpleName(annotationType)); Content parameterLinks = getTypeParameterLinks(linkInfo); - if (configuration.linksource) { + if (configuration.getOptions().linkSource) { addSrcLink(annotationType, annotationName, pre); pre.add(parameterLinks); } else { @@ -203,7 +203,7 @@ */ @Override public void addAnnotationTypeDescription(Content annotationInfoTree) { - if (!configuration.nocomment) { + if (!configuration.getOptions().noComment) { if (!utils.getFullBody(annotationType).isEmpty()) { addInlineComment(annotationType, annotationInfoTree); } @@ -215,7 +215,7 @@ */ @Override public void addAnnotationTypeTagInfo(Content annotationInfoTree) { - if (!configuration.nocomment) { + if (!configuration.getOptions().noComment) { addTagsInfo(annotationType, annotationInfoTree); } }