// "Replace with forEach" "true" import java.util.ArrayList; import java.util.List; class Sample { List foo = new ArrayList<>(); { for (String s : foo) { bar(s) } } void bar(String s){} }