【发布时间】:2015-07-23 07:46:42
【问题描述】:
最近我更新到最新版本的 IntelliJ IDEA 14.1.4 Ultimate。 自从这次更新以来,它会自动为我拆分行,这很烦人,因为我想自己手动完成。
示例: 我可能会输入这样的内容:
throw new IllegalArgumentException("You can only provide one vararg/optional parameter to the end of this method!");
在输入 intellij 时自动换行:
throw new IllegalArgumentException("You can only provide one vararg/optional parameter to the end of this" +
" method!");
现在这可能看起来不错,但是当 intelli 决定在您编写十进制双精度时这样做时真的很烦人,因为它会产生如下错误:
如何禁用此功能/修改此行为?
【问题讨论】:
标签: java intellij-idea