mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-06-20 00:54:26 +07:00
21 lines
319 B
Java
21 lines
319 B
Java
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
|
|
|
|
|
|
|
public class B {
|
|
protected Object invokeNext(Object mi)
|
|
throws Exception
|
|
{<caret>
|
|
try {
|
|
return this;
|
|
} finally {
|
|
try {
|
|
} finally {
|
|
return null;
|
|
}
|
|
}
|
|
}
|
|
|
|
|
|
}
|