mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-25 19:29:30 +07:00
IDEA-152325 Smart completion should not suggest class fields in its this/super constructor call
This commit is contained in:
+1
-1
@@ -1,7 +1,7 @@
|
||||
class SearchParameters {
|
||||
|
||||
public SearchParameters(PsiElement element) {
|
||||
this(e<caret>);
|
||||
this(e<caret>x);
|
||||
}
|
||||
|
||||
public SearchParameters(final PsiElement element, final boolean checkDeep) {
|
||||
|
||||
+10
@@ -0,0 +1,10 @@
|
||||
class A {
|
||||
final int field;
|
||||
A(int field) {
|
||||
this.field = field;
|
||||
}
|
||||
|
||||
A(A delegate, int x) {
|
||||
this(<caret>)
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user