mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-19 14:09:12 +07:00
18 lines
295 B
Java
18 lines
295 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
|
|
|
|
public class d {
|
|
void f(d[] aspects) {
|
|
for (int i = 0; i < aspects.length; i++) {<caret>
|
|
final int line;
|
|
try {
|
|
line = Integer.parseInt("2"); // /
|
|
}
|
|
catch (Exception e) {
|
|
continue;
|
|
}
|
|
}
|
|
}
|
|
|
|
}
|