mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 01:34:55 +07:00
GitOrigin-RevId: 8be71dd89b077358c6f298b04acc25a1c78293b1
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;
|
|
}
|
|
}
|
|
} |