38 lines
383 B
Plaintext
38 lines
383 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if (a == b)
|
||
|
{
|
||
|
doTheThing(b);
|
||
|
}
|
||
|
if (a == b) // Noncompliant; is this really what was intended?
|
||
|
{
|
||
|
doTheThing(c);
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if (a == b)
|
||
|
{
|
||
|
doTheThing(b);
|
||
|
doTheThing(c);
|
||
|
}
|
||
|
----
|
||
|
or
|
||
|
----
|
||
|
if (a == b)
|
||
|
{
|
||
|
doTheThing(b);
|
||
|
}
|
||
|
if (b == c)
|
||
|
{
|
||
|
doTheThing(c);
|
||
|
}
|
||
|
----
|
||
|
|
||
|
include::../exceptions.adoc[]
|