Files
Mikhail Pyltsinandintellij-monorepo-bot 29c026eaf2 [java-inspections] IDEA-360880 Replace cast expressions with pattern variable does nothing inside of ternary operator
- use PsiStatement as scope instead of PsiIfStatement
- more tests

GitOrigin-RevId: 2602190296988a80d54520c7a0f15fd0f8e3d942
2024-10-28 21:01:30 +00:00

24 lines
511 B
Java

// "Replace cast expressions with pattern variable" "true"
public final class A {
private static Object foo5(Object o) {
return new Runnable() {
@Override
public void run() {
if (!(o instanceof Integer)) {
return;
}
final String string = ((Intege<caret>r) o).toString();
if (string.equals("1")) {
return;
}
if (((Integer) o).intValue() == 1) {
return;
}
print(((Integer) o));
}
};
}
}