Example:
if (x > 0) { System.out.println("x is positive"); }
The quick fix for the inspection removes braces from the statement body:
if (x > 0) System.out.println("x is positive");