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

identifiers.stream().forEach(System.out::println);  // Noncompliant

Compliant solution

identifiers.forEach(System.out::println);  // Compliant