import java.util.List; public class WildcardFixed { void foo(List i) { fooHelper(i); } private void fooHelper(List l) { l.set(0, l.get(0)); } }