Revision: 3c2f6bd7e880
Author:   cgruber <[email protected]>
Date:     Thu Jul 25 15:44:14 2013
Log:      Minor fixes.
http://code.google.com/p/google-guice/source/detail?r=3c2f6bd7e880&repo=wiki

Modified:
 /CyclicDependencies.wiki

=======================================
--- /CyclicDependencies.wiki    Thu Jul 25 12:31:07 2013
+++ /CyclicDependencies.wiki    Thu Jul 25 15:44:14 2013
@@ -31,7 +31,7 @@
 }
 }}}

-Right now, the dependency chain is all good: constructing a Store results in constructing a Boss, which results in constructing a Clerk. However, to get the Clerk to get a Customer to do his selling, he'll need a reference to the Store to get those customer//... +Right now, the dependency chain is all good: constructing a Store results in constructing a Boss, which results in constructing a Clerk. However, to get the Clerk to get a Customer to do his selling, he'll need a reference to the Store to get those customer

 {{{
 public class Store {
@@ -47,9 +47,9 @@
 }

 public class Boss {
-       private final Clerk Clerk;
-       @Inject public Boss(Clerk Clerk) {
-               this.Clerk = Clerk;
+       private final Clerk clerk;
+       @Inject public Boss(Clerk clerk) {
+               this.clerk = clerk;
        }
 }

--
You received this message because you are subscribed to the Google Groups 
"google-guice-dev" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To post to this group, send email to [email protected].
Visit this group at http://groups.google.com/group/google-guice-dev.
For more options, visit https://groups.google.com/groups/opt_out.


Reply via email to