mirror of
https://gitflic.ru/project/openide/openide.git
synced 2026-09-16 02:27:18 +07:00
IDEA-196864 Completion: classes containing no annotations are suggested after @
GitOrigin-RevId: aaa88b250510f5fb0f7c95bd2c8005a5546d53c0
This commit is contained in:
committed by
intellij-monorepo-bot
parent
a98c29b767
commit
88e5b6766e
@@ -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>) {
|
||||
|
||||
Reference in New Issue
Block a user