Code Inspection: Assignment could be replaced with operator assignment
Last modified: 13 May 2022 Reports an assignment operation that can be replaced by an operator assignment to make your code shorter and probably clearer.
Example:
x = x / 3;
After the quick fix is applied the result looks like:
x /= 3;