18 lines
293 B
Plaintext
18 lines
293 B
Plaintext
![]() |
include::../description.adoc[]
|
||
|
|
||
|
== Noncompliant Code Example
|
||
|
|
||
|
----
|
||
|
if (booleanMethod() || false) { /* ... */ }
|
||
|
doSomething(!false);
|
||
|
doSomething(booleanMethod() && true);
|
||
|
----
|
||
|
|
||
|
== Compliant Solution
|
||
|
|
||
|
----
|
||
|
if (booleanMethod()) { /* ... */ }
|
||
|
doSomething(true);
|
||
|
doSomething(booleanMethod());
|
||
|
----
|