mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-09 15:41:26 +07:00
Java: Fixed completion of overloaded method parameters in getDeclaredMethod("methodName", ...) (IDEA-171721)
This commit is contained in:
+11
@@ -0,0 +1,11 @@
|
||||
class Main {
|
||||
void foo() {
|
||||
Test.class.getDeclaredMethod("foo<caret>");
|
||||
}
|
||||
}
|
||||
|
||||
class Test {
|
||||
public void foo(){}
|
||||
public void foo(int n){}
|
||||
public void foo(String s){}
|
||||
}
|
||||
Reference in New Issue
Block a user