MultipleUnaryOperatorsInMethodCall
Avoid having multiple unary operators acting on the same variable in a method call

Severity
WARNING

The problem

Increment operators in method calls are dubious and while argument lists are evaluated left-to-right, documentation suggests that code not rely on this specification. In addition, code is clearer when each expression contains at most one side effect.

Suppression

Suppress false positives by adding the suppression annotation @SuppressWarnings("MultipleUnaryOperatorsInMethodCall") to the enclosing element.