mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-05 21:00:59 +07:00
Suggest j and k for int type
GitOrigin-RevId: 964e58ddcbf7920d18274be6e05df40088f9ed32
This commit is contained in:
committed by
intellij-monorepo-bot
parent
8af51fa572
commit
ba72470db2
@@ -2,12 +2,12 @@
|
||||
class X {
|
||||
int m(int i) {
|
||||
if (i > 0) {
|
||||
int i1 = ++i;
|
||||
if (i1 == 1) {
|
||||
int j = ++i;
|
||||
if (j == 1) {
|
||||
System.out.println(1);
|
||||
|
||||
System.out.println(2);
|
||||
} else if (i1 == 2) {
|
||||
} else if (j == 2) {
|
||||
System.out.println(2);
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user