Skip to content

Instantly share code, notes, and snippets.

@jhuska
Created September 11, 2013 08:09
Show Gist options
  • Save jhuska/6520622 to your computer and use it in GitHub Desktop.
Save jhuska/6520622 to your computer and use it in GitHub Desktop.
public class SomeFragment {
private AdvancedInteractions advancedInteractions;
public AdvancedInteractions advanced() {
if(advancedInteractions == null) {
advancedInteractions = new AdvancedInteractions();
}
return advancedInteractions;
}
public class AdvancedInteractions {
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment