mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-26 03:13:40 +07:00
IDEA-84100 Code completion does not work for Spring injected beans in debugger
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
interface Foo { void foo(); }
|
||||
interface Bar { void bar(); }
|
||||
|
||||
public class A {
|
||||
void foo(Foo l) {
|
||||
if (l instanceof Bar) {
|
||||
l.<caret>
|
||||
}
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user