File tree Expand file tree Collapse file tree 1 file changed +2
-2
lines changed
maven-plugin-report-plugin/src/main/java/org/apache/maven/plugin/plugin/report Expand file tree Collapse file tree 1 file changed +2
-2
lines changed Original file line number Diff line number Diff line change @@ -296,11 +296,11 @@ private void renderParameterDetails(Iterator<Parameter> parameters) {
296
296
while (parameters .hasNext ()) {
297
297
Parameter parameter = parameters .next ();
298
298
// deprecated anchor for backwards-compatibility with XDoc (upper and lower case)
299
- // TODO: remove once migrated to Doxia 2.x
299
+ // TODO: replace once migrated to Doxia 2.x with two-arg startSection(String, String) method
300
300
sink .anchor (parameter .getName ());
301
+ sink .anchor_ ();
301
302
302
303
startSection (format ("parameter.name" , parameter .getName ()));
303
- sink .anchor_ ();
304
304
String context = "Parameter " + parameter .getName () + " in goal " + descriptor .getGoal ();
305
305
renderDeprecatedParameterDescription (parameter .getDeprecated (), context );
306
306
sink .division ();
You can’t perform that action at this time.
0 commit comments