== Why is this an issue? There's no need to invoke ``++stream()++`` on a ``++Collection++`` before a ``++forEach++`` call because each ``++Collection++`` has its own ``++forEach++`` method. === Noncompliant code example [source,java] ---- identifiers.stream().forEach(System.out::println); // Noncompliant ---- === Compliant solution [source,java] ---- identifiers.forEach(System.out::println); // Noncompliant ---- ifdef::env-github,rspecator-view[] ''' == Implementation Specification (visible only on this page) include::message.adoc[] include::highlighting.adoc[] endif::env-github,rspecator-view[]