Files
openide/java/java-tests/testData/codeInsight/javadocIG/preInDeprecated.java
Nikita Eshkeev e5c796e6e4 [javadoc] IDEA-278688 In quick documentation, <pre> inside @deprecated is missing line breaks
Use all the children of a tag instead of just data elements, because the data elements don't have whitespaces that are needed to figure out if there is a line break.

GitOrigin-RevId: d04879b67145a9033f750c730fc0a348ed5a7d76
2021-12-08 16:57:39 +00:00

11 lines
99 B
Java

/**
* @deprecated reason.
*
* <pre>
* line 1
* line 2
* </pre>
*/
class Scratch {
}