avaje / avaje-inject

Dependency injection via APT (source code generation) ala "Server-Side Dagger DI"
https://avaje.io/inject
Apache License 2.0
240 stars 24 forks source link

Fix support for @Prototype with Provider<T> #541

Closed rbygrave closed 6 months ago

rbygrave commented 6 months ago

Extracted this fix from #540

@Prototype with Provider currently produces code that registers Provider<Provider> instead of Provider and this fixes that.