如何配置Intellij Idea以消除代码格式上两个注释之间的白线

时间:2019-05-08 06:50:03

标签: intellij-idea

我注意到以下代码未格式化:

@Id

@Column(name = "COUNTRY_ID", unique = true, nullable = false, length = 2)
public String getCountryId() {
    return this.countryId;
}

这意味着在代码格式化后,两个注释之间的空间会保留。

我的问题:可以将Intellij Idea配置为在格式化代码时删除两个注释之间的白线吗?

0 个答案:

没有答案