URSP - Unnecessary Return statement Parentheses

Accordig 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:

Wrong

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

Right

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