mirror of
https://github.com/openjdk/jdk.git
synced 2025-09-21 03:24:38 +02:00
6657907: javadoc has unchecked warnings
Reviewed-by: bpatel
This commit is contained in:
parent
43dbd05dde
commit
a6f6acaf27
50 changed files with 411 additions and 396 deletions
|
@ -86,7 +86,7 @@ public class JavadocEnter extends Enter {
|
|||
if (tree.sym != null && tree.sym.kind == Kinds.TYP) {
|
||||
if (tree.sym == null) return;
|
||||
String comment = env.toplevel.docComments.get(tree);
|
||||
ClassSymbol c = (ClassSymbol)tree.sym;
|
||||
ClassSymbol c = tree.sym;
|
||||
docenv.makeClassDoc(c, comment, tree, env.toplevel.lineMap);
|
||||
}
|
||||
}
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue