Skip to content

Commit 8190217

Browse files
committedApr 29, 2022
8285496: DocLint does not check for missing @param tags for type parameters on classes and interfaces
Reviewed-by: darcy, iris
1 parent 64d98ba commit 8190217

File tree

3 files changed

+9
-3
lines changed

3 files changed

+9
-3
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclint/Checker.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -251,7 +251,7 @@ public Void scan(DocCommentTree tree, TreePath p) {
251251
// the following checks are made after the scan, which will record @param tags
252252
if (isDeclaredType()) {
253253
TypeElement te = (TypeElement) env.currElement;
254-
// checkParamsDocumented(te.getTypeParameters()); // See JDK-8285496
254+
checkParamsDocumented(te.getTypeParameters());
255255
checkParamsDocumented(te.getRecordComponents());
256256
} else if (isExecutable()) {
257257
if (!isOverridingMethod) {

‎test/langtools/tools/doclint/MissingParamsTest.java

+4-1
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
/*
22
* @test /nodynamiccopyright/
3-
* @bug 8004832
3+
* @bug 8004832 8285496
44
* @summary Add new doclint package
55
* @modules jdk.javadoc/jdk.javadoc.internal.doclint
66
* @build DocLintTester
@@ -21,4 +21,7 @@ void missingParam(int param) { }
2121

2222
/** . */
2323
<T> void missingTyparam() { }
24+
25+
/** . */
26+
public class MissingTyparam<T> { /** . */ MissingTyparam() { } }
2427
}

‎test/langtools/tools/doclint/MissingParamsTest.out

+4-1
Original file line numberDiff line numberDiff line change
@@ -10,5 +10,8 @@ MissingParamsTest.java:20: warning: no @param for param
1010
MissingParamsTest.java:23: warning: no @param for <T>
1111
<T> void missingTyparam() { }
1212
^
13-
4 warnings
13+
MissingParamsTest.java:26: warning: no @param for <T>
14+
public class MissingTyparam<T> { /** . */ MissingTyparam() { } }
15+
^
16+
5 warnings
1417

0 commit comments

Comments
 (0)
Please sign in to comment.