Skip to content

Instantly share code, notes, and snippets.

@vestrel00
Last active July 26, 2017 15:53
Show Gist options
  • Save vestrel00/8bcd5c24ccca4d19f6306c23cf8f27ce to your computer and use it in GitHub Desktop.
Save vestrel00/8bcd5c24ccca4d19f6306c23cf8f27ce to your computer and use it in GitHub Desktop.
A: 4 - util/SingletonUtil.java
@Singleton
public final class SingletonUtil {
@Inject
SingletonUtil() {
}
public String doSomething() {
return "SingletonUtil: " + hashCode();
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment