IDEA-66266 (add/remove modifier quick fix to work on explicit ones only)

This commit is contained in:
Roman Shevchenko
2011-03-07 17:20:33 +01:00
parent a9c8cd157b
commit 20b933ac87
6 changed files with 55 additions and 4 deletions

View File

@@ -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();
}
}
}