codingwell / scala-guice

Scala extensions for Google Guice
Apache License 2.0
341 stars 44 forks source link

Can't attach Singleton scope toProvider #74

Closed adi2ky closed 5 years ago

adi2ky commented 5 years ago

I have the following binding in my Module

bind[HttpRequestClient].toProvider[OKHttpRequestClientProvider].in[Singleton]

getting following error

type arguments [Singleton] do not conform to method in's type parameter bounds [TAnn <: java.lang.annotation.Annotation]

Any help ?

adi2ky commented 5 years ago

Actually it picked up Scala's version of Singleton, importing google's version fixed it.