This rule is defined by the following Java class: net.sourceforge.pmd.rules.basic.UnnecessaryReturn
Example:
public class Foo { public void bar() { int x = 42; return; } }