Closed as not planned
Description
The option "Remove blank lines in Javadoc" (org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment
) is being ignored. The output remains the same regardless of this setting.
Environment
- Operating System: Windows NT 10.0
- JDK version: 16.0.27 Hotspot
- Visual Studio Code version: 1.60.1 (user setup)
- Java extension version: v0.82.0
Steps To Reproduce
- Use a custom formatter for Java
- Change the option
org.eclipse.jdt.core.formatter.comment.clear_blank_lines_in_javadoc_comment
to true, either in the formatter preview, or directly via the xml. - Blank lines in javadocs aren't cleared.
log.log
The jdt_ws log is attached - The java.trace logs returned nothing.
Current Result
Currently the lines aren't removed from the javadoc.
/**
* Some description of the method
*
*
*
*
* @param arg1 A parameter
* @param arg2 Another parameter
*/
Expected Result
The lines should be removed from the javadoc:
/**
* Some description of the method
* @param arg1 A parameter
* @param arg2 Another parameter
*/