Why is this an issue?

There are several reasons for a method not to have a method body:

Noncompliant code example

func doNothing() { // Noncompliant
}

Compliant solution

func doNothing() {
  // Do nothing because of X and Y.
}