Skip to content

Instantly share code, notes, and snippets.

@andreikastsiuk
Created April 17, 2019 10:04
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 andreikastsiuk/a86b267d26fd020a50d062671564382b to your computer and use it in GitHub Desktop.
Save andreikastsiuk/a86b267d26fd020a50d062671564382b to your computer and use it in GitHub Desktop.
Sample how to hide public constuctor for Util class
public final class UtilClass {
private UtilClass() {
throw new AssertionError("No com.kastsiuk.UtilClass instances for you!");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment