mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-22 07:32:21 +07:00
GitOrigin-RevId: 638c71cb24eff7895e970c3200bdff2023f11ab0
9 lines
258 B
Java
9 lines
258 B
Java
// "Fix all 'Pattern variable can be used' problems in file" "true"
|
|
class X {
|
|
void test(Object obj, Object obj2) {
|
|
if (obj instanceof String && obj2 instanceof Integer) {
|
|
String <caret>s = (String)obj;
|
|
Integer i = (Integer)obj2;
|
|
}
|
|
}
|
|
} |