We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 941fefd commit 4a90c04Copy full SHA for 4a90c04
app/module/Module.scala
@@ -18,7 +18,7 @@
18
19
package module
20
21
-import com.google.inject.{AbstractModule}
+import com.google.inject.AbstractModule
22
import com.typesafe.config.Config
23
import controllers.{MyExecutionContext, MyExecutionContextImpl}
24
import net.codingwell.scalaguice.ScalaModule
@@ -55,9 +55,10 @@ class Module extends AbstractModule with ScalaModule {
55
56
/**
57
* Bind types for injection
58
+ *
59
* @return
60
*/
- def configure() {
61
+ override def configure() {
62
bind(classOf[MyExecutionContext]).to(classOf[MyExecutionContextImpl])
63
}
64
0 commit comments