mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-31 19:50:55 +07:00
Fixes IDEA-326232 Suppress semicolon for the next iteration part in for-loop GitOrigin-RevId: 4ceeb1c673fdbabf59f2e31610a1012f1fb07cc4
11 lines
175 B
Java
11 lines
175 B
Java
import java.util.*;
|
|
|
|
class SomeTest {
|
|
void a() {
|
|
Collection<?> c = Collections.emptyList();
|
|
|
|
for(Iterator<?> i=c.iterator(); i.hasNext();i.rem<caret>) {
|
|
|
|
}
|
|
}
|
|
} |