Why is this an issue?

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

Noncompliant code example

public override function doSomething():void {
}

public function doSomethingElse():void {
}

Compliant solution

public override function doSomething():void {
  throw new IllegalOperationError("doSomething cannot be performed because ...");
}

public function doSomethingElse():void {
  //This method is empty because ...
}