Skip to content

Instantly share code, notes, and snippets.

@Abhay-cloud
Created October 24, 2024 09:05
Show Gist options
  • Save Abhay-cloud/2e0a28082738236023842a470937362b to your computer and use it in GitHub Desktop.
Save Abhay-cloud/2e0a28082738236023842a470937362b to your computer and use it in GitHub Desktop.
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