Why is this an issue?

For better readability, do not put more than one statement on a single line.

Noncompliant code example

if(someCondition) doSomething();

Compliant solution

if(someCondition) {
  doSomething();
}