mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-01-09 16:39:37 +07:00
IDEA-66266 (add/remove modifier quick fix to work on explicit ones only)
This commit is contained in:
@@ -0,0 +1,16 @@
|
||||
// "Make 'e' final" "false"
|
||||
|
||||
class C {
|
||||
static {
|
||||
try {
|
||||
throw new Exception();
|
||||
}
|
||||
catch (RuntimeException | IOException e) {
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
System.out.println(<caret>e);
|
||||
}
|
||||
}.run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user