// "Replace iteration with bulk 'TestClass.test()' call" "true-preview" package testpackage; import java.util.*; interface TestClass { Iterable test(Iterable entities); S test(S entity); } public class Main { public void test(TestClass repo, String[] stringsToSave) { repo.test(Arrays.asList(stringsToSave)); } }