mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-08 21:52:48 +07:00
GitOrigin-RevId: 8be71dd89b077358c6f298b04acc25a1c78293b1
10 lines
225 B
Java
10 lines
225 B
Java
// "Replace 'list' with pattern variable" "true"
|
|
import java.util.*;
|
|
|
|
class X {
|
|
void test(List<Integer> obj) {
|
|
if (obj instanceof ArrayList) {
|
|
ArrayList<Integer> l<caret>ist = (ArrayList<Integer>) obj;
|
|
}
|
|
}
|
|
} |