Skip to content

Commit 315ae4c

Browse files
committedAug 11, 2020
8250954: Avoid multiple warnings for external docs with mismatching modularity
Reviewed-by: jjg
1 parent 23ed3a9 commit 315ae4c

File tree

1 file changed

+7
-4
lines changed
  • src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util

1 file changed

+7
-4
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/toolkit/util/Extern.java

+7-4
Original file line numberDiff line numberDiff line change
@@ -384,6 +384,7 @@ private void readElementList(InputStream input, String path, boolean relative)
384384
DocPath elempath;
385385
String moduleName = null;
386386
DocPath basePath = DocPath.create(path);
387+
boolean issueWarning = true;
387388
while ((elemname = in.readLine()) != null) {
388389
if (elemname.length() > 0) {
389390
elempath = basePath;
@@ -398,10 +399,11 @@ private void readElementList(InputStream input, String path, boolean relative)
398399
} else {
399400
elempath = elempath.resolve(pkgPath);
400401
}
401-
String actualModuleName = checkLinkCompatibility(elemname, moduleName, path);
402+
String actualModuleName = checkLinkCompatibility(elemname, moduleName, path, issueWarning);
402403
Item item = new Item(elemname, elempath, relative);
403404
packageItems.computeIfAbsent(actualModuleName, k -> new TreeMap<>())
404405
.putIfAbsent(elemname, item); // first-one-wins semantics
406+
issueWarning = false;
405407
}
406408
}
407409
}
@@ -416,22 +418,23 @@ private void readElementList(InputStream input, String path, boolean relative)
416418
* @param packageName the package name
417419
* @param moduleName the module name or null
418420
* @param path the documentation path
421+
* @param issueWarning whether to print a warning in case of modularity mismatch
419422
* @return the module name to use according to actual modularity of the package
420423
*/
421-
private String checkLinkCompatibility(String packageName, String moduleName, String path) {
424+
private String checkLinkCompatibility(String packageName, String moduleName, String path, boolean issueWarning) {
422425
PackageElement pe = utils.elementUtils.getPackageElement(packageName);
423426
if (pe != null) {
424427
ModuleElement me = (ModuleElement)pe.getEnclosingElement();
425428
if (me == null || me.isUnnamed()) {
426-
if (moduleName != null) {
429+
if (moduleName != null && issueWarning) {
427430
configuration.getReporter().print(Kind.WARNING,
428431
resources.getText("doclet.linkMismatch_PackagedLinkedtoModule", path));
429432
}
430433
// library is not modular, ignore module name even if documentation is modular
431434
return DocletConstants.DEFAULT_ELEMENT_NAME;
432435
} else if (moduleName == null) {
433436
// suppress the warning message in the case of automatic modules
434-
if (!isAutomaticModule(me)) {
437+
if (!isAutomaticModule(me) && issueWarning) {
435438
configuration.getReporter().print(Kind.WARNING,
436439
resources.getText("doclet.linkMismatch_ModuleLinkedtoPackage", path));
437440
}

0 commit comments

Comments
 (0)
Please sign in to comment.