rspec/rules/S3815/java/rule.adoc

34 lines
644 B
Plaintext
Raw Normal View History

2021-04-28 16:49:39 +02:00
``++Collection.removeIf++`` is more readable and less verbose than using the ``++Iterator.remove++`` idiom. It might also be more performant in some cases, particularly for ``++ArrayList++`` instances.
2021-04-28 16:49:39 +02:00
== Noncompliant Code Example
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
for (Iterator it = items.iterator(); it.hasNext();) {
if (this.predicate(it.next())) {
it.remove();
}
2021-04-28 16:49:39 +02:00
}
----
== Compliant Solution
2021-04-28 16:49:39 +02:00
2022-02-04 17:28:24 +01:00
[source,java]
2021-04-28 16:49:39 +02:00
----
items.removeIf(this::predicate);
----
ifdef::env-github,rspecator-view[]
'''
== Implementation Specification
(visible only on this page)
include::message.adoc[]
include::highlighting.adoc[]
endif::env-github,rspecator-view[]