mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-30 05:06:01 +07:00
54dc3625c7
GitOrigin-RevId: 47ea76c9514b26c3e91a1b0e8450169a75b89576
13 lines
279 B
Java
13 lines
279 B
Java
// "<html> Change signature of foo(<s>ArrayList<String></s> <b>HashSet<E></b>)</html>" "false"
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashSet;
|
|
|
|
class InspecitonIssue {
|
|
|
|
void foo(ArrayList<String> lst) {}
|
|
|
|
void bar() {
|
|
foo(new Hash<caret>Set<>());
|
|
}
|
|
} |