From 1cfbf473f2e7e87d508546a5f799064a56c830fd Mon Sep 17 00:00:00 2001 From: Leland-Takamine Date: Tue, 14 Aug 2018 18:38:23 -0700 Subject: [PATCH] Update DAGGER.md --- DAGGER.md | 10 +--------- 1 file changed, 1 insertion(+), 9 deletions(-) diff --git a/DAGGER.md b/DAGGER.md index 44304e57..833639bc 100644 --- a/DAGGER.md +++ b/DAGGER.md @@ -41,14 +41,6 @@ If there is a bidirectional dependency between the Dagger Component and the Moti interface Component { DaggerDependency(); - - @dagger.Component.Builder - interface Builder { - - myScope(MyScope myScope); - - // ... - } } @motif.Scope @@ -72,4 +64,4 @@ interface MyScope { } ``` -Above, `@Spread` tells Motif to provide all of the dependencies declared by the Component's provision methods in addition to the Component itself. With this pattern, it's possible to pass the Motif Scope into the Dagger Component as a dependency, while allowing Motif factory methods to rely on Dagger-provided objects. \ No newline at end of file +Above, `@Spread` tells Motif to provide all of the dependencies declared by the Component's provision methods in addition to the Component itself. With this pattern, it's possible to pass the Motif Scope into the Dagger Component as a dependency, while allowing Motif factory methods to rely on Dagger-provided objects.