摆脱IntelliJ中没有大括号的简单语句的格式警告

时间:2019-07-13 10:26:11

标签: java intellij-idea

我正在使用IntelliJ并设置Code Style-Java-Wrapping and Braces enter image description here

Force bracesiffor

while设置为Do not force,这样可以使用简单的语句而无需使用大括号,例如

if (a == b) 
    return true;

用于不带花括号的简单语句的程序可以编译而不会出错,但是IDE仍然提醒我为简单的语句添加花括号。

enter image description here

如何摆脱IntelliJ中的那些警告?

1 个答案:

答案 0 :(得分:1)

这是名为不带括号的控制流语句的检查。您可以在Preferences | Editor | Inspections | Java | Code style issues | Control flow statement without braces中将其禁用。或者在警告上键入 Alt + 输入,然后按向右箭头并选择Disable inspection