rspec/rules/S2751/rule.adoc

16 lines
307 B
Plaintext
Raw Normal View History

When the same condition is checked twice in quick succession, it is probably inefficient, and likely an error. Usually, the intent was to check a different condition.
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,text]
----
if (a.length() > 5) {
//...
}
if (a.length() > 5) { // Noncompliant
// ...
}
----