You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
The type reference visitor isn't catching type references which are inside a class literal expression, so it never sees that AppScope::class. This means that it doesn't get concatenated with com.foo.moduleA. and isn't added to the list of possible references.
ModuleCheck will say that :moduleA is unused in :moduleB, and will recommend removing it.
The text was updated successfully, but these errors were encountered:
:moduleA declares absolutely nothing but:
:moduleB references that scope in an annotation, with a wildcard import:
The type reference visitor isn't catching type references which are inside a class literal expression, so it never sees that
AppScope::class
. This means that it doesn't get concatenated withcom.foo.moduleA.
and isn't added to the list of possible references.ModuleCheck will say that
:moduleA
is unused in:moduleB
, and will recommend removing it.The text was updated successfully, but these errors were encountered: