Last active
April 22, 2020 19:55
-
-
Save Vzor-/8dcdb9fbd1e7ae99affe9bfd6c3b60c6 to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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