这是我写的javadoc评论:
/**
* This utility allows the user to do the following.
* <ul>
* <li>A cool feature</li>
* <li>Another cool feature</li>
* </ul>
*/
public static void main(String[] args) {
这是相同的评论,由intelliJ
重新格式化 /**
* This utility allows the user to do the following.
* <ul>
* <li>A cool feature</li>
* <li>Another cool feature</li>
* </ul>
*/
public static void main(String[] args) {
如何防止autoformat功能破坏我的意图?
为了防止IntelliJ删除我的换行符,我选中了一个框:
设置&gt;编辑&gt;代码风格&gt; Java&gt; JavaDoc&gt; Preseve Line Feeds
我希望有一个&#34; Preseve领先的空白&#34;盒子在同一个地方,但没有。