Unnecessary Return Statement Parentheses (URSP)

Description:

According to Sun Code Conventions for Java, a return statement with a value should not use parentheses unless they make the return value more obvious in some way.

Example:

return;
return (myDisk.size());
return (sizeOk ? size : defaultSize);