Detects no-op return statements in void functions when they occur at the end of the method.

Instead of:

public void stuff() {
  int x = 5;
  return;
}

do:

public void stuff() {
  int x = 5;
}