Skip to content

Instantly share code, notes, and snippets.

@andrus
Last active April 9, 2017 11:41
Show Gist options
  • Save andrus/d8e138c680af08268cb211f3e239a4fb to your computer and use it in GitHub Desktop.
Save andrus/d8e138c680af08268cb211f3e239a4fb to your computer and use it in GitHub Desktop.
Guice Strories Article
public class A {
private B b;
@Inject
public A(B b) {
this.b = b;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment