Files
Mathiasandintellij-monorepo-bot 5f0e92caa1 IDEA-375516 javadoc: better handling of last line paragraph breaks
#IDEA-375516 Fixed

GitOrigin-RevId: fcc5475be92335ed7cb4a0f7dc416eaffa27462d
2025-11-21 11:59:49 +00:00

19 lines
344 B
Java

import java.lang.Override
class MarkdownInheritDoc {
/** I am legacy javadoc, I hope no one disturbs my _underlines_ and **astrerisks** */
void foo() {}
}
class MarkdownInheritedDoc extends MarkdownInheritDoc {
/// Markdown variant
/// {@inheritDoc}
///
/// Single line markdown
@Override
void foo() {
super.foo();
}
}