rspec/rules/S2757/apex/fix.adoc

19 lines
294 B
Plaintext
Raw Normal View History

Replace the operators with a single one if that is the intention.
[source,apex]
----
Integer target = -5;
Integer num = 3;
target -= num; // target = -8
----
Or fix the spacing to avoid confusion
[source,apex]
----
Integer target = -5;
Integer num = 3;
target = -num; // target = -3
----