mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-22 06:21:25 +07:00
IDEA-243025 Action to collapse several statements into a loop
GitOrigin-RevId: 5064b5ac2c2ec4390d9d082b7fded96e0c731732
This commit is contained in:
committed by
intellij-monorepo-bot
parent
bb49afba0d
commit
03db4748c0
@@ -0,0 +1,10 @@
|
||||
import java.util.Arrays;
|
||||
|
||||
// "Collapse into loop" "true"
|
||||
class X {
|
||||
void test() {
|
||||
for (String s : Arrays.asList("Hello", "World")) {
|
||||
System.out.println(s);
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user