jira-importer commented on issue #685: URL: https://github.com/apache/maven-javadoc-plugin/issues/685#issuecomment-2957344295
**[Benson Margulies](https://issues.apache.org/jira/secure/ViewProfile.jspa?name=bmargulies)** commented The problem is this line: List\<String> packageNames = getPackageNames( sourcePaths, files ); This sets 'packageNames', unconditionally. Then, later on, if packageNames is sets, the code ignores the file list and just uses the package list. It's as if the author of the subsequent if statement thought that 'packageNames' corresponded to some explicit configuration instead of being calculated from the sourcePaths and the files. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: [email protected] For queries about this service, please contact Infrastructure at: [email protected]
