From 2c4261e751360aed67ddebe625c23d1d054f88fd Mon Sep 17 00:00:00 2001 From: Graham Date: Sat, 25 Apr 2020 11:16:06 +0100 Subject: [PATCH] Exclude Guice annotations from auto-import This ensures JSR-330 annotations are used instead. Signed-off-by: Graham --- .idea/.gitignore | 1 + .idea/codeInsightSettings.xml | 13 +++++++++++++ 2 files changed, 14 insertions(+) create mode 100644 .idea/codeInsightSettings.xml diff --git a/.idea/.gitignore b/.idea/.gitignore index e4c25a0a..f87962e9 100644 --- a/.idea/.gitignore +++ b/.idea/.gitignore @@ -1,5 +1,6 @@ /* !.gitignore +!codeInsightSettings.xml !codeStyles !fileTemplates !inspectionProfiles diff --git a/.idea/codeInsightSettings.xml b/.idea/codeInsightSettings.xml new file mode 100644 index 00000000..c321f75a --- /dev/null +++ b/.idea/codeInsightSettings.xml @@ -0,0 +1,13 @@ + + + + + com.google.inject.BindingAnnotation + com.google.inject.Inject + com.google.inject.Named + com.google.inject.Provider + com.google.inject.ScopeAnnotation + com.google.inject.Singleton + + + \ No newline at end of file