我遇到了 eclipse 没有按照我想要的方式格式化评论的问题。当我注释掉代码时,我希望保持对齐,但我很难让它工作。
通缉:
if (isTrue) {
// get it done
doIt();
// } else {
// log("Take note of this");
}
格式化结果:
if (isTrue) {
// get it done
doIt();
// } else {
// log("Take note of this");
}