Skip to content

Instantly share code, notes, and snippets.

@Vzor-
Last active April 22, 2020 19:55
Show Gist options
  • Save Vzor-/8dcdb9fbd1e7ae99affe9bfd6c3b60c6 to your computer and use it in GitHub Desktop.
Save Vzor-/8dcdb9fbd1e7ae99affe9bfd6c3b60c6 to your computer and use it in GitHub Desktop.
abstract class Util {
public static Util INSTANCE = setInstance();
abstract String getOSName();
public static Util setInstance() { return null; }
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment