Detects no-op return statements in void functions when they occur at the end of the method.
return
void
Instead of:
public void stuff() { int x = 5; return; }
do:
public void stuff() { int x = 5; }