Skip to content

Instantly share code, notes, and snippets.

@vakho10
Created August 4, 2017 13:25
Show Gist options
  • Save vakho10/a395a958535dee350b44166201f13438 to your computer and use it in GitHub Desktop.
Save vakho10/a395a958535dee350b44166201f13438 to your computer and use it in GitHub Desktop.
package singleton;
public final class Earth
{
public static final Earth INSTANCE;
static
{
new Earth();
}
private Earth()
{
INSTANCE = (Earth)this;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment