Skip to content

Instantly share code, notes, and snippets.

@dvdciri
Created July 30, 2019 11:42
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 dvdciri/a7f741da1f5966ebe81de2c06449d3d9 to your computer and use it in GitHub Desktop.
Save dvdciri/a7f741da1f5966ebe81de2c06449d3d9 to your computer and use it in GitHub Desktop.
public final class AnObject implements Serializable {
public static final AnObject INSTANCE;
private AnObject() {
}
static {
AnObject var0 = new AnObject();
INSTANCE = var0;
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment