IDEA-196864 Completion: classes containing no annotations are suggested after @

GitOrigin-RevId: aaa88b250510f5fb0f7c95bd2c8005a5546d53c0
This commit is contained in:
peter
2019-10-02 16:31:25 +00:00
committed by intellij-monorepo-bot
parent a98c29b767
commit 88e5b6766e
5 changed files with 28 additions and 10 deletions
@@ -4,8 +4,10 @@ final class MyModule {
public static @interface Dependency { }
}
class MyAnotherModule {}
final class SomeService {
SomeService(@My<caret>) {
SomeService(@My<caret>.Inner) {
}
}
@@ -4,6 +4,8 @@ final class MyModule {
public static @interface Dependency { }
}
class MyAnotherModule {}
final class SomeService {
SomeService(@MyModule.Dependency<caret>) {