如何阻止 Eclipse 格式化程序在 Javadoc 中添加尾随空格
2022-09-02 11:03:59
我注意到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来删除尾随空格,但是有一种方法可以阻止格式化程序首先添加它?