Skip to content

Commit db0857d

Browse files
committedJun 5, 2023
8306578: Report error if no label given in @see and {@link} when no default is available
Reviewed-by: jjg
1 parent 8c9d21e commit db0857d

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed
 

‎src/jdk.javadoc/share/classes/jdk/javadoc/internal/doclets/formats/html/TagletWriterImpl.java

+1-1
Original file line numberDiff line numberDiff line change
@@ -494,7 +494,7 @@ private Content linkSeeReferenceOutput(Element holder,
494494
if (labelContent.isEmpty()) {
495495
// A non-empty label is required for fragment links as the
496496
// reference target does not provide a useful default label.
497-
reportWarning.accept("doclet.link.see.no_label", null);
497+
htmlWriter.messages.error(ch.getDocTreePath(refTree), "doclet.link.see.no_label");
498498
return invalidTagOutput(resources.getText("doclet.link.see.no_label"),
499499
Optional.of(refSignature));
500500
}

‎test/langtools/jdk/javadoc/doclet/testSeeLinkAnchor/TestSeeLinkAnchor.java

+4-4
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@
2323

2424
/*
2525
* @test
26-
* @bug 8200337 8307377
26+
* @bug 8200337 8307377 8306578
2727
* @summary Generalize see and link tags for user-defined anchors
2828
* @library /tools/lib ../../lib
2929
* @modules
@@ -140,14 +140,14 @@ public void testMissingLabel(Path base) throws Exception {
140140
"--no-platform-links",
141141
"nolabel");
142142

143-
checkExit(Exit.OK);
143+
checkExit(Exit.ERROR);
144144
checkOutput(Output.OUT, true, """
145-
warning: missing reference label
145+
error: missing reference label
146146
Link with missing label: {@link ##main}.
147147
^
148148
""",
149149
"""
150-
Class1.java:5: warning: missing reference label
150+
Class1.java:5: error: missing reference label
151151
@see ##main
152152
^
153153
""");

0 commit comments

Comments
 (0)
Please sign in to comment.