rspec/rules/S1763/apex/rule.adoc
2021-01-27 13:42:22 +01:00

23 lines
487 B
Plaintext

Jump statements (``++return++``, ``++break++``, ``++continue++``) and ``++throw++`` expressions move control flow out of the current code block. So any statements that come after a jump are dead code.
== Noncompliant Code Example
----
Integer foo(Integer a) {
Integer i = 10;
return i + a; // Noncompliant
i++; // dead code
}
----
== Compliant Solution
----
Integer foo(Integer a) {
Integer i = 10;
return i + a; // Noncompliant
}
----
include::../see.adoc[]