26 lines
318 B
Plaintext
26 lines
318 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if (x == 0) {
|
||
|
doSomething()
|
||
|
} else if (x == 1) {
|
||
|
doSomethingElse()
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if (x == 0) {
|
||
|
doSomething()
|
||
|
} else if (x == 1) {
|
||
|
doSomethingElse()
|
||
|
} else {
|
||
|
throw IllegalStateException()
|
||
|
}
|
||
|
----
|
||
|
|
||
|
include::../see.adoc[]
|