mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-11 11:36:59 +07:00
15 lines
337 B
Java
15 lines
337 B
Java
// "Change signature of 'set(List<T>)' to 'set(List<T>, String)'" "true"
|
|
import java.util.List;
|
|
|
|
public class X<T> {
|
|
private List<T> myList;
|
|
|
|
public void set(List<T> list, String aaa) {
|
|
myList = list;
|
|
}
|
|
|
|
public static void aa() {
|
|
X<Integer> x = new X<Integer>();
|
|
x.set<caret>(null, "aaa");
|
|
}
|
|
} |