Eclipse Java Formatter避免在catch块后换行

时间:2019-04-04 16:18:14

标签: eclipse eclipse-formatter

我有这段Java代码:

if (x) {
    doX();
} else if (y) try {
    doY();
} catch (Exception e) {
    recover();
} else {
    doOther();
}

,而且我想配置Eclipse JDT Formatter使其保持这种状态,而无需使用on / off标记。我设法将Formatter配置为使try语句保持在同一行,但是它始终在catch块之后添加新行,即

if (x) {
    doX();
} else if (y) try {
    doY();
} catch (Exception e) {
    recover();
}
else {
    doOther();
}

是否可以使用格式化程序的开/关标签配置格式化程序来避免

0 个答案:

没有答案