mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-02 03:07:47 +07:00
[java-intentions] IDEA-356722 "Extract side effects" action should not be offered in for loop increment
GitOrigin-RevId: 51d2d36362df6e5aa16c765cd7d089b8c5fc5c7e
This commit is contained in:
committed by
intellij-monorepo-bot
parent
ed84affe00
commit
734fecb1ac
@@ -0,0 +1,8 @@
|
||||
// "Extract side effects as an 'if' statement" "false"
|
||||
class Z {
|
||||
|
||||
void z() {
|
||||
for (int i = 0; ; (i < 100) ?<caret> i++ : i--) {
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user