rspec/rules/S2583/java/rule.adoc
jtingsanchali 96d9ddb930
RULEAPI-755 Update CWE URLs by removing .html suffix and update with https protocol (#926)
* Change affects only see.adoc and rule.adoc files, not comments-and-links.adoc files
2022-04-07 08:53:59 -05:00

51 lines
1.0 KiB
Plaintext

include::../description.adoc[]
include::../noncompliant.adoc[]
== Exceptions
This rule will not raise an issue in either of these cases:
* When the condition is a single ``++final boolean++``
----
final boolean debug = false;
//...
if (debug) {
// Print something
}
----
* When the condition is literally ``++true++`` or ``++false++``.
----
if (true) {
// do something
}
----
In these cases it is obvious the code is as intended.
== See
* https://cwe.mitre.org/data/definitions/570[MITRE, CWE-570] - Expression is Always False
* https://cwe.mitre.org/data/definitions/571[MITRE, CWE-571] - Expression is Always True
* https://wiki.sei.cmu.edu/confluence/x/5dUxBQ[CERT, MSC12-C.] - Detect and remove code that has no effect or is never executed
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::../message.adoc[]
include::../highlighting.adoc[]
'''
== Comments And Links
(visible only on this page)
include::../comments-and-links.adoc[]
endif::env-github,rspecator-view[]