mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-21 17:52:27 +07:00
GitOrigin-RevId: d6996431df5addb8f1f518960b3ad4ab61668fc8
14 lines
244 B
Java
14 lines
244 B
Java
import java.util.Set;
|
|
|
|
public class BoxedDivisionComparison {
|
|
void test(long a, Set<Long> set) {
|
|
String s = null;
|
|
for (Long b : set) {
|
|
if (a / b < 10) {
|
|
s = "foo";
|
|
break;
|
|
}
|
|
}
|
|
if (s == null) {}
|
|
}
|
|
} |