在这样的一段代码上运行 Eclipse 格式化程序(Strg+Alt+F)时,我注意到了一个奇怪的行为:
/**
* bar
*
* @return nothing
*/
Object foo() {
return null;
}
它将在此处添加尾随空格字符:
/**
* bar
* <--- this line has a trailing space now!
* @return nothing
*/
Object foo() {
return null;
}
我知道如何配置 Eclipse 以删除尾随空格,但它有办法阻止格式化程序首先添加它吗?