There’s no need to invoke stream() on a Collection before a forEach call because each
Collection has its own forEach method.
identifiers.stream().forEach(System.out::println); // Noncompliant
identifiers.forEach(System.out::println); // Compliant