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