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
{{ message }}
This repository has been archived by the owner on Aug 26, 2021. It is now read-only.
Asume you have @Inject annotation over class constructor
The plugin shows other classes where that class is injected, but doesn't show any injection into module.
For example, this class is only injected to module mapping:
class ProfileCountriesFacade implements ProfileFacade {
private final ProfileService profileService;
private final CountriesService countriesService;
@Inject
ProfileCountriesFacade(ProfileService profileService,
CountriesService countriesService) {
this.profileService = profileService;
this.countriesService = countriesService;
}
}
Asume you have
@Inject
annotation over class constructorThe plugin shows other classes where that class is injected, but doesn't show any injection into module.
For example, this class is only injected to module mapping:
picture to show view
declared mapping in module:
The text was updated successfully, but these errors were encountered: