Skip to content

Instantly share code, notes, and snippets.

@andreikastsiuk
Created April 17, 2019 10:04
Show Gist options
  • Select an option

  • Save andreikastsiuk/a86b267d26fd020a50d062671564382b to your computer and use it in GitHub Desktop.

Select an option

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