mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-18 17:20:54 +07:00
21 lines
549 B
Java
21 lines
549 B
Java
// "Add 'catch' clause(s)" "false"
|
|
// should not try to add catch clauses across method boundaries
|
|
class s {
|
|
int f() throws Exception {
|
|
Runnable runnable = new Runnable() {
|
|
public void run() {
|
|
try {
|
|
Runnable runnable = new Runnable() {
|
|
public void run() {
|
|
<caret>int i = f();//
|
|
}
|
|
};
|
|
} catch (Exception e) {
|
|
}
|
|
}
|
|
};
|
|
return 0;
|
|
}
|
|
}
|
|
|