hyperdefined / CustomLauncherRewrite

Non-final static fields should not be public JAVA-S1050
Security
Critical
5 months agoa year old
 39    /**
 40     * Stores the version, loaded from 'project.properties.'
 41     */
 42    public static String version; 43    /**
 44     * The main logger.
 45     */
 47    /**
 48     * The program's icon.
 49     */
 50    public static Image icon; 51    /**
 52     * The user agent used for requests.
 53     * This is set here since it includes the version.
 43    /**
 44     * The main logger.
 45     */
 46    public static Logger logger; 47    /**
 48     * The program's icon.
 49     */
 52     * The user agent used for requests.
 53     * This is set here since it includes the version.
 54     */
 55    public static String userAgent; 56
 57    /**
 58     * The entry point for the program.
26    /**
27     * Stores what OS we are running. Can be win32/win64 or linux.
28     */
29    public static String osType = null;30
31    static {
32        if (SystemUtils.IS_OS_WINDOWS) {