mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-08 23:39:39 +07:00
10 lines
217 B
Java
10 lines
217 B
Java
// "Replace 'list' with pattern variable" "false"
|
|
import java.util.*;
|
|
|
|
class X {
|
|
void test(List obj) {
|
|
if (obj instanceof ArrayList) {
|
|
ArrayList<Integer> l<caret>ist = (ArrayList<Integer>) obj;
|
|
}
|
|
}
|
|
} |