mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-17 01:24:33 +02:00
8162353: javadoc should provide a way to disable use of frames
Reviewed-by: bpatel, ksrini
This commit is contained in:
parent
66ff418a4b
commit
9208c82732
14 changed files with 667 additions and 55 deletions
|
@ -165,7 +165,7 @@ public class ModuleBuilder {
|
|||
if (!comment.isEmpty()) {
|
||||
sb.append("/**\n").append(comment.replace("\n", " *")).append(" */\n");
|
||||
}
|
||||
sb.append("module ").append(name).append(" {");
|
||||
sb.append("module ").append(name).append(" {\n");
|
||||
requires.forEach(r -> sb.append(" " + r + "\n"));
|
||||
exports.forEach(e -> sb.append(" " + e + "\n"));
|
||||
uses.forEach(u -> sb.append(" " + u + "\n"));
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue