mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 10:20:15 +07:00
don't suggest break/continue inside lambda/anonymous inside a loop (IDEA-CR-10869)
This commit is contained in:
@@ -0,0 +1,9 @@
|
||||
public class Util {
|
||||
void foo(int a, int b) {
|
||||
Outer: for (int i = 0; i < 239; i++) {
|
||||
Runnable r = () -> {
|
||||
conti<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user