-
-
Save Abhay-cloud/2e0a28082738236023842a470937362b to your computer and use it in GitHub Desktop.
This file contains hidden or 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
public final class Setting { | |
@NotNull | |
public static final MyUtils MyUtils = new MyUtils((DefaultConstructorMarker)null); | |
public static final class Utils { | |
@NotNull | |
public static final Utils INSTANCE; | |
@NotNull | |
public final String getVersion() { | |
return "1.0.0"; | |
} | |
private Utils() { | |
} | |
static { | |
Utils var0 = new Utils(); | |
INSTANCE = var0; | |
} | |
} | |
public static final class MyUtils { | |
@NotNull | |
public final String generateUniqueId() { | |
String var10000 = UUID.randomUUID().toString(); | |
return var10000; | |
} | |
private MyUtils() { | |
} | |
// $FF: synthetic method | |
public MyUtils(DefaultConstructorMarker $constructor_marker) { | |
this(); | |
} | |
} | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment