mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-04-30 18:28:55 +07:00
IDEA-66266 (add/remove modifier quick fix to work on explicit ones only)
This commit is contained in:
@@ -0,0 +1,13 @@
|
||||
// "Make 'r' final" "false"
|
||||
|
||||
class C {
|
||||
void m() throws Exception {
|
||||
try (AutoCloseable r = null) {
|
||||
new Runnable() {
|
||||
public void run() {
|
||||
System.out.println(<caret>r);
|
||||
}
|
||||
}.run();
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user