// "Extract variable 'lowerCase' to 'map' operation" "true-preview" import java.util.*; import java.util.stream.*; public class Test { boolean test(List list) { return list.stream() .anyMatch(s -> { String lowerCase = s.toLowerCase(); return "test".equals(lowerCase); }); } }