Useless parentheses can sometimes be misleading and so should be removed.
return 3; return (x); // Noncompliant return (x + 1); // Noncompliant int x = (y / 2 + 1); // Noncompliant
return 3; return x; return x + 1; int x = y / 2 + 1;