mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-08-28 04:37:32 +07:00
IDEA-127668 Smart type completion prefers constants to fields, normal completion prefers fields to constants
This commit is contained in:
+17
@@ -0,0 +1,17 @@
|
||||
public class Foo {
|
||||
|
||||
private LocalDate dateField;
|
||||
|
||||
void foo(LocalDate date) {
|
||||
|
||||
}
|
||||
|
||||
void bar() {
|
||||
foo(<caret>)
|
||||
}
|
||||
}
|
||||
|
||||
class LocalDate {
|
||||
public static final LocalDate MAX;
|
||||
public static final LocalDate MIN;
|
||||
}
|
||||
Reference in New Issue
Block a user