mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-05-01 10:48:09 +07:00
Java: Added priorities in the completion list for arguments of getField() and getMethod() (IDEA-167250)
This commit is contained in:
@@ -0,0 +1,17 @@
|
||||
class Main {
|
||||
void foo() {
|
||||
Test.class.getMethod("method", A.class, B.class);
|
||||
}
|
||||
}
|
||||
|
||||
class Test {
|
||||
public Test() {}
|
||||
Test(int n) {}
|
||||
public void method(){}
|
||||
void method(A a, B b){}
|
||||
public void method(C c){}
|
||||
}
|
||||
|
||||
class A {}
|
||||
class B {}
|
||||
class C {}
|
||||
Reference in New Issue
Block a user