// "Replace Collection.stream().forEach() with Collection.forEach() (may change semantics)" "true" import java.util.Arrays; import java.util.Collection; class Test { void print() { Collection def = Arrays.asList('d', 'e', 'f'); def.forEach(System.out::print); } }