23 lines
261 B
Plaintext
23 lines
261 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
switch (variable) {
|
||
|
case 0:
|
||
|
doSomething();
|
||
|
default:
|
||
|
doSomethingElse();
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if (variable == 0) {
|
||
|
doSomething();
|
||
|
} else {
|
||
|
doSomethingElse();
|
||
|
}
|
||
|
----
|