mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-26 19:06:24 +07:00
IDEA-178774 Unroll loop intention action
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
// "Unroll loop" "false"
|
||||
class Test {
|
||||
void test() {
|
||||
fo<caret>r(Object x : new Object[] {"one", 1, 1.0, 1.0f}) {
|
||||
if(Math.random() > 0.5) break;
|
||||
System.out.println(x);
|
||||
}
|
||||
}
|
||||
|
||||
void foo(boolean b) {}
|
||||
}
|
||||
Reference in New Issue
Block a user