KT-6798 J2K: Needless use of run {} function after converting for-loop

#KT-6798 Fixed
This commit is contained in:
Valentin Kipyatkov
2015-03-26 19:04:05 +03:00
parent 46193f3ef7
commit 6dbb13c32d
28 changed files with 373 additions and 113 deletions
@@ -0,0 +1,8 @@
class A {
void foo(boolean p) {
if (p)
for (int i = 1; i < 1000; i *= 2) {
System.out.println(i);
}
}
}