mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-27 10:03:11 +07:00
introduce parameter: ensure correct scope is picked in case of anonymous class (IDEA-143435)
This commit is contained in:
+12
@@ -0,0 +1,12 @@
|
||||
class Abc {
|
||||
void foo(final String name) {
|
||||
|
||||
new Runnable(){
|
||||
@Override
|
||||
public void run() {
|
||||
System.out.println(name);
|
||||
}
|
||||
};
|
||||
}
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user