38 lines
414 B
Plaintext
38 lines
414 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if (param == 1)
|
||
|
{
|
||
|
OpenWindow();
|
||
|
}
|
||
|
else if (param == 2)
|
||
|
{
|
||
|
CloseWindow();
|
||
|
}
|
||
|
else if (param == 1) // Noncompliant
|
||
|
{
|
||
|
MoveWindowToTheBackground();
|
||
|
}
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if (param == 1)
|
||
|
{
|
||
|
OpenWindow();
|
||
|
}
|
||
|
else if (param == 2)
|
||
|
{
|
||
|
CloseWindow();
|
||
|
}
|
||
|
else if (param == 3)
|
||
|
{
|
||
|
MoveWindowToTheBackground();
|
||
|
}
|
||
|
----
|
||
|
|
||
|
include::../see.adoc[]
|