Skip to content

Instantly share code, notes, and snippets.

@detsam
Created February 23, 2011 09:09
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save detsam/840200 to your computer and use it in GitHub Desktop.
Save detsam/840200 to your computer and use it in GitHub Desktop.
class A {
private B b;
public A(B b) {
this.b = b;
}
public void doSmths() {
b.blah();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment