New J2K: get rid of generalInspectionPostProcessing

This commit is contained in:
Ilya Kirillov
2019-09-17 22:33:40 +03:00
parent a4cf7a912b
commit e6f2e0041c
4 changed files with 148 additions and 87 deletions
+4 -4
View File
@@ -1,13 +1,13 @@
fun foo(i: Int, j: Int): String {
when (i) {
return when (i) {
0 -> {
when (j) {
1 -> return "0, 1"
2 -> return "0, 2"
}
return "1, x"
"1, x"
}
1 -> return "1, x"
else -> return "x, x"
1 -> "1, x"
else -> "x, x"
}
}