Files
openide/java/java-tests/testData/codeInsight/javadocIG/escapeAngleBracketsInCode.java
Nikita Eshkeev f6b1914a56 [javadoc] IDEA-284917 Javadoc: code inside {@code} get escaped
The javadoc generation highlights the code in code tags too depending on some flags, which also performs escaping of the special symbols. Hence, the initial escaping in JavaDocInfoGenerator#generateLiteralValue should be performed only if the highlighting will not be applied.

GitOrigin-RevId: fedc6db2e211bfb90709e91ed0ce10994977e0fa
2021-12-18 07:43:37 +00:00

7 lines
116 B
Java

/**
* <pre>
* {@code map.compute(key, (k, v) -> (v == null) ? msg : v.concat(msg))}
* </pre>
*/
class Main {
}