Java: Added priorities in the completion list for arguments of getAnnotation() and getConstructor() (IDEA-167250)

This commit is contained in:
Pavel Dolgov
2017-02-14 17:11:55 +03:00
parent 9844a2ba44
commit 8754155e85
13 changed files with 127 additions and 53 deletions
@@ -1,6 +1,6 @@
import foo.bar.*;
class Main {
void foo() throws ReflectiveOperationException {
Test.class.getDeclaredAnnotation(Bar.class);
Test.class.getDeclaredAnnotation(Foo.class);
}
}