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
…es requests for a `Map<K, Provider<V>>` would fail to compile. Similarly, fix support for `@LazyClassKey` with `jakarta.inject.Provider`.
Fixes#4572.
RELNOTES=Fixes#4572. Fix issue with `jakarta.inject.Provider` support where in certain cases requests for a `Map<K, Provider<V>>` would fail to compile.
PiperOrigin-RevId: 715952799
In the release notes of dagger 2.55 it seems that there is some support for
jakarta.inject.Provider
but I do not know if this is supposed to work:it fails with the following error
The example works with
javax.inject.Provider
but not withjakarta.inject.Provider
. Replacing the provider code with@Binds
compiles:I'm testing with dagger 2.55
The text was updated successfully, but these errors were encountered: