我正在尝试为Eclipse的代码格式化程序设置自己的配置文件,但找不到在类末尾添加空白行的方法。
public class MyClass {
public void method() {
// Something here.
}
// Want a blank line here.
}
Here是我当前的个人资料。
最佳答案
没有这样的选择。最好的办法是设置要保留的空行数,然后手动插入空白行。
关于java - Eclipse格式化程序:在类末尾添加空白行,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/24189265/