Skip to content

Commit

Permalink
Fix java.completion.importOrder (#2107)
Browse files Browse the repository at this point in the history
Signed-off-by: Snjezana Peco <snjezana.peco@redhat.com>
  • Loading branch information
snjeza authored May 31, 2022
1 parent 15af562 commit 73b64b9
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -580,11 +580,11 @@ public class Preferences {
JAVA_COMPLETION_FAVORITE_MEMBERS_DEFAULT.add("org.junit.jupiter.api.Assumptions.*");
JAVA_COMPLETION_FAVORITE_MEMBERS_DEFAULT.add("org.junit.jupiter.api.DynamicContainer.*");
JAVA_COMPLETION_FAVORITE_MEMBERS_DEFAULT.add("org.junit.jupiter.api.DynamicTest.*");
JAVA_IMPORT_ORDER_DEFAULT = new ArrayList<>();
JAVA_IMPORT_ORDER_DEFAULT = new LinkedList<>();
JAVA_IMPORT_ORDER_DEFAULT.add("java");
JAVA_IMPORT_ORDER_DEFAULT.add("javax");
JAVA_IMPORT_ORDER_DEFAULT.add("com");
JAVA_IMPORT_ORDER_DEFAULT.add("org");
JAVA_IMPORT_ORDER_DEFAULT.add("com");
JAVA_COMPLETION_FILTERED_TYPES_DEFAULT = new ArrayList<>();
JAVA_COMPLETION_FILTERED_TYPES_DEFAULT.add("com.sun.*");
JAVA_COMPLETION_FILTERED_TYPES_DEFAULT.add("io.micrometer.shaded.*");
Expand Down

0 comments on commit 73b64b9

Please sign in to comment.