IntelliJ 折叠单行方法

IntelliJ collapsing single line methods

自从我更新了我的 intelliJ 版本(14.x 到 15.x)后,它已经开始在 Java 编辑器中自动折叠单行方法:

以前的版本:

public void setContext(SecurityContext context) {
    this.context = context;
}

最新版本:

public void setContext(SecurityContext context) { this.context = context; }

有什么办法可以避免这种情况吗?我觉得原版更养眼!

谢谢。

从文件菜单打开 'Settings'。在 'Editor' -> 'General' -> 'Code Folding' 下,你会找到一个 'Collapse by Default' 部分。

只需取消选中 'One-line methods' 并单击确定。

对于mac, 代码 > 折叠 > 展开 ALL/To 级别

在 Windows:

设置 -> 编辑器 -> 常规 -> 代码折叠 -> 取消勾选"One-line methods"