我想在 Eclipse 中配置一个格式化程序,当花括号围绕返回/中断/继续控制语句时删除它们:
if (x == y) {
return true;
} //that's bad
if (x == y) return true; //that's better
我已经找到Preferences --> Java --> Code Style --> Formatter --> Control Statements
了如何在一行中保留if
和else
声明,但没有找到如何摆脱不必要的大括号。Eclipse 是否允许您定义一个消除冗余大括号的格式化程序?