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) {
296296 while (parameters .hasNext ()) {
297297 Parameter parameter = parameters .next ();
298298 // 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
300300 sink .anchor (parameter .getName ());
301+ sink .anchor_ ();
301302
302303 startSection (format ("parameter.name" , parameter .getName ()));
303- sink .anchor_ ();
304304 String context = "Parameter " + parameter .getName () + " in goal " + descriptor .getGoal ();
305305 renderDeprecatedParameterDescription (parameter .getDeprecated (), context );
306306 sink .division ();
You can’t perform that action at this time.
0 commit comments