mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 09:47:51 +07:00
- reimplement, changing only mayCompleteNormallyVisitor GitOrigin-RevId: 67be02c535ec3d5df7a9ec9cd77395305db27e14
15 lines
359 B
Java
15 lines
359 B
Java
// "Replace 'integer' with pattern variable" "false"
|
|
|
|
class X {
|
|
public static void testWithExceptionCall() throws Exception {
|
|
Object object = new Object();
|
|
if (!(object instanceof Integer)) {
|
|
test();
|
|
}
|
|
Integer int<caret>eger = (Integer)object;
|
|
System.out.println(integer);
|
|
}
|
|
|
|
private static void test() throws Exception {
|
|
}
|
|
} |