@@ -384,6 +384,7 @@ private void readElementList(InputStream input, String path, boolean relative)
384
384
DocPath elempath ;
385
385
String moduleName = null ;
386
386
DocPath basePath = DocPath .create (path );
387
+ boolean issueWarning = true ;
387
388
while ((elemname = in .readLine ()) != null ) {
388
389
if (elemname .length () > 0 ) {
389
390
elempath = basePath ;
@@ -398,10 +399,11 @@ private void readElementList(InputStream input, String path, boolean relative)
398
399
} else {
399
400
elempath = elempath .resolve (pkgPath );
400
401
}
401
- String actualModuleName = checkLinkCompatibility (elemname , moduleName , path );
402
+ String actualModuleName = checkLinkCompatibility (elemname , moduleName , path , issueWarning );
402
403
Item item = new Item (elemname , elempath , relative );
403
404
packageItems .computeIfAbsent (actualModuleName , k -> new TreeMap <>())
404
405
.putIfAbsent (elemname , item ); // first-one-wins semantics
406
+ issueWarning = false ;
405
407
}
406
408
}
407
409
}
@@ -416,22 +418,23 @@ private void readElementList(InputStream input, String path, boolean relative)
416
418
* @param packageName the package name
417
419
* @param moduleName the module name or null
418
420
* @param path the documentation path
421
+ * @param issueWarning whether to print a warning in case of modularity mismatch
419
422
* @return the module name to use according to actual modularity of the package
420
423
*/
421
- private String checkLinkCompatibility (String packageName , String moduleName , String path ) {
424
+ private String checkLinkCompatibility (String packageName , String moduleName , String path , boolean issueWarning ) {
422
425
PackageElement pe = utils .elementUtils .getPackageElement (packageName );
423
426
if (pe != null ) {
424
427
ModuleElement me = (ModuleElement )pe .getEnclosingElement ();
425
428
if (me == null || me .isUnnamed ()) {
426
- if (moduleName != null ) {
429
+ if (moduleName != null && issueWarning ) {
427
430
configuration .getReporter ().print (Kind .WARNING ,
428
431
resources .getText ("doclet.linkMismatch_PackagedLinkedtoModule" , path ));
429
432
}
430
433
// library is not modular, ignore module name even if documentation is modular
431
434
return DocletConstants .DEFAULT_ELEMENT_NAME ;
432
435
} else if (moduleName == null ) {
433
436
// suppress the warning message in the case of automatic modules
434
- if (!isAutomaticModule (me )) {
437
+ if (!isAutomaticModule (me ) && issueWarning ) {
435
438
configuration .getReporter ().print (Kind .WARNING ,
436
439
resources .getText ("doclet.linkMismatch_ModuleLinkedtoPackage" , path ));
437
440
}
0 commit comments