mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
moved to community
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
// LocalsOrMyInstanceFieldsControlFlowPolicy
|
||||
import java.io.IOException;
|
||||
import java.io.OutputStream;
|
||||
public class Outer {
|
||||
void f(OutputStream writer) { <caret>
|
||||
try {
|
||||
try {
|
||||
throw new IOException();
|
||||
} finally {
|
||||
writer.close();
|
||||
}
|
||||
}
|
||||
catch (IOException e) {
|
||||
e.hashCode();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user