-
Bug
-
Resolution: Fixed
-
P3
-
9
-
b162
-
Verified
Issue | Fix Version | Assignee | Priority | Status | Resolution | Resolved In Build |
---|---|---|---|---|---|---|
JDK-8177589 | 10 | Kumar Srinivasan | P3 | Resolved | Fixed | b04 |
JavadocTool.java
if (new File(arg).getName().equals("module-info.java")) {
docenv.warning(null, "main.file_ignored", arg);
} else {
parse(fm.getJavaFileObjects(arg), classTrees, true);
}
This may have been valid a while back, but it is no longer a reasonable restriction!
if (new File(arg).getName().equals("module-info.java")) {
docenv.warning(null, "main.file_ignored", arg);
} else {
parse(fm.getJavaFileObjects(arg), classTrees, true);
}
This may have been valid a while back, but it is no longer a reasonable restriction!
- backported by
-
JDK-8177589 javadoc ignores module-info files on the command line
-
- Resolved
-