Java inspection: Get rid of RemoveRedundantElseAction, as it's totally inferior to DataFlowInspection (IDEA-157727)

This commit is contained in:
Pavel Dolgov
2016-06-24 14:00:51 +03:00
parent 5e380e7526
commit 92838f48bc
10 changed files with 0 additions and 229 deletions
@@ -1,13 +0,0 @@
// "Remove redundant 'else'" "true"
class a {
void foo() {
int a = 0;
int b = 0;
if (a != b) {
return;
}
a = b;
a++;
}
}