mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-16 14:23:28 +07:00
37 lines
784 B
HTML
37 lines
784 B
HTML
<html>
|
|
<body>
|
|
Reports blank lines in Javadoc comments.
|
|
<p>
|
|
Blank lines in Javadoc may signal an intention split the text to different paragraphs. However, the Javadoc tool and IntelliJ IDEA will
|
|
ignore them when rendering documentation comments.
|
|
</p>
|
|
<p>
|
|
The quick-fix suggests to replace the blank line with a paragraph tag (<p>).
|
|
</p>
|
|
<p><b>Example:</b></p>
|
|
<pre><code>
|
|
class Main {
|
|
/**
|
|
* Doesn't do anything.
|
|
*
|
|
* Does absolutely nothing
|
|
*/
|
|
void foo() {}
|
|
}
|
|
</code></pre>
|
|
<p>After the quick-fix is applied:</p>
|
|
<pre><code>
|
|
class Main {
|
|
/**
|
|
* Doesn't do anything.
|
|
* <p>
|
|
* Does absolutely nothing
|
|
*/
|
|
void foo() {}
|
|
}
|
|
</code></pre>
|
|
<!-- tooltip end -->
|
|
<p><small>New in 2022.1</small></p>
|
|
</body>
|
|
</html>
|