external annotations: don't suggest to configure when annotation already in the code (IDEA-198591)

GitOrigin-RevId: 4ba386f93d24dc0b254ba4fd8e8fce34c3e2b902
This commit is contained in:
Anna Kozlova
2019-06-04 12:10:05 +03:00
committed by intellij-monorepo-bot
parent 1b57510f2b
commit 3130fbc85e
4 changed files with 28 additions and 1 deletions
@@ -0,0 +1,5 @@
package withAnnotation;
import org.jetbrains.annotations.Nullable;
public class Foo {
String f<caret>oo() {return null;}
}
@@ -0,0 +1,6 @@
package withAnnotation;
import org.jetbrains.annotations.Nullable;
public class Foo {
@Nullable
String f<caret>oo() {return null;}
}