mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 19:29:30 +07:00
delegate methods: fix single field case (IDEA-154698)
This commit is contained in:
@@ -0,0 +1,10 @@
|
||||
class A {
|
||||
void foo(){}
|
||||
}
|
||||
class Test{
|
||||
public void foo() {
|
||||
a.foo();
|
||||
}
|
||||
|
||||
private A a;
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
class A {
|
||||
void foo(){}
|
||||
}
|
||||
class Test{
|
||||
private A <caret>a;
|
||||
}
|
||||
Reference in New Issue
Block a user