Java: don't produce NUL characters in Convert to Markdown documentation output (IDEA-374488)

GitOrigin-RevId: b96d7cc559b0ffbc5130131961b8a530b9baba9c
This commit is contained in:
Bas Leijdekkers
2025-06-14 22:43:28 +00:00
committed by intellij-monorepo-bot
parent 666f6f44c6
commit e6e401fbe1
3 changed files with 13 additions and 3 deletions
@@ -383,4 +383,8 @@ interface Foo<T, B, P, I>
///
/// </Pre>
/// end
class Preformatted {}
class Preformatted {
/// <pre>`x`</pre>
protected void beginParsing() {}
}
@@ -408,4 +408,10 @@ interface Foo<T, B, P, I>
* </Pre>
* end
*/
class Preformatted {}
class Preformatted {
<warning descr="Javadoc comment can be Markdown documentation comment">/**</warning>
* <pre>{@code x}</pre>
*/
protected void beginParsing() {}
}