Remove unnecessary downcasting

GitOrigin-RevId: b91110977db6e5b08d9f4aaffa8496d305d698e2
This commit is contained in:
Leonid Bushuev
2019-04-29 14:28:21 +03:00
committed by intellij-monorepo-bot
parent 2d9369d983
commit 970dc0fe32
1065 changed files with 11316 additions and 13215 deletions

View File

@@ -1,13 +0,0 @@
// "Simplify boolean expression" "true"
class X {
void test(int a, int b) {
if (a + 1 + foo(a, b) > 5) {
}
}
private int foo(int a, int b) {
return a+b;
}
}

View File

@@ -1,13 +0,0 @@
// "Simplify boolean expression" "true"
class X {
void test(int a, int b) {
if (<caret>true && (a + 1) + foo((a), b) > 5) {
}
}
private int foo(int a, int b) {
return a+b;
}
}