Reports control flow statements with only a single statement in their code block.

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");