Inspectopedia
 
2024.3

Assignment could be replaced with operator assignment

Warning
New
Last modified: 03 December 2024

Reports an assignment operation that can be replaced by an operator assignment to make your code shorter and probably clearer.

Example:

x = x + 3; x = x / 3;

After the quick fix is applied the result looks like:

x += 3; x /= 3;