rspec/rules/S1125/apex/rule.adoc

18 lines
293 B
Plaintext
Raw Normal View History

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