mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
13 lines
263 B
Java
13 lines
263 B
Java
// "Change 1st parameter of method 'foo' from 'ArrayList<String>' to 'HashSet<E>'" "false"
|
|
|
|
import java.util.ArrayList;
|
|
import java.util.HashSet;
|
|
|
|
class InspecitonIssue {
|
|
|
|
void foo(ArrayList<String> lst) {}
|
|
|
|
void bar() {
|
|
foo(new Hash<caret>Set<>());
|
|
}
|
|
} |