Arguments in method calls need not be parenthesized. The level of nesting in code is more obvious when unnecessary parentheses are omitted.
Remove any unnecessary parentheses in method-call arguments.
do_thing((a), b, (c + d));
do_thing(a, b, c + d);