35 lines
854 B
Plaintext
35 lines
854 B
Plaintext
include::../description.adoc[]
|
|
|
|
== Noncompliant Code Example
|
|
|
|
----
|
|
if (booleanMethod() || false) { /* ... */ }
|
|
doSomething(!false)
|
|
|
|
booleanVariable = if (booleanMethod()) true else false
|
|
booleanVariable = if (booleanMethod()) true else exp
|
|
booleanVariable = if (booleanMethod()) false else exp
|
|
booleanVariable = if (booleanMethod()) exp else true
|
|
booleanVariable = if (booleanMethod()) exp else false
|
|
----
|
|
|
|
== Compliant Solution
|
|
|
|
----
|
|
if (booleanMethod()) { /* ... */ }
|
|
doSomething(true)
|
|
|
|
booleanVariable = booleanMethod()
|
|
booleanVariable = booleanMethod() || exp
|
|
booleanVariable = !booleanMethod() && exp
|
|
booleanVariable = !booleanMethod() || exp
|
|
booleanVariable = booleanMethod() && exp
|
|
----
|
|
|
|
ifdef::env-github,rspecator-view[]
|
|
== Comments And Links
|
|
(visible only on this page)
|
|
|
|
include::../comments-and-links.adoc[]
|
|
endif::env-github,rspecator-view[]
|