mirror of
https://gitflic.ru/project/openide/openide.git
synced 2025-12-27 22:20:54 +07:00
12 lines
180 B
Java
12 lines
180 B
Java
// "Make 'e' not final" "false"
|
|
|
|
class C {
|
|
static {
|
|
try {
|
|
throw new Exception();
|
|
}
|
|
catch (RuntimeException | IOException e) {
|
|
<caret>e = null;
|
|
}
|
|
}
|
|
} |