Reports any instance of unnecessary parentheses.

Parentheses are considered unnecessary if the evaluation order of an expression remains unchanged after you remove the parentheses.

Example:


  int n = 3 + (9 * 8);

After quick-fix is applied:


  int n = 3 + 9 * 8;

Configure the inspection: