From 952ba6e17273a0bfb1f0dd6cb238405fab31800c Mon Sep 17 00:00:00 2001 From: brenoepic <59066707+brenoepics@users.noreply.github.com> Date: Thu, 28 Apr 2022 20:28:13 -0300 Subject: [PATCH] Reorder the modifiers to comply with the Java Language Specification. --- src/main/java/com/eu/habbo/Emulator.java | 23 +++++++++++------------ 1 file changed, 11 insertions(+), 12 deletions(-) diff --git a/src/main/java/com/eu/habbo/Emulator.java b/src/main/java/com/eu/habbo/Emulator.java index 0ec8df7b..29fbcbc3 100644 --- a/src/main/java/com/eu/habbo/Emulator.java +++ b/src/main/java/com/eu/habbo/Emulator.java @@ -31,16 +31,20 @@ import java.util.regex.Pattern; public final class Emulator { + public static final int MAJOR = 4; + public static final int MINOR = 0; + public static final int BUILD = 0; + public static final String PREVIEW = "Developer Preview"; + public static final String version = "Arcturus Morningstar" + " " + MAJOR + "." + MINOR + "." + BUILD + " " + PREVIEW; + public static String build = ""; + public static boolean isReady = false; + public static boolean isShuttingDown = false; + public static boolean stopped = false; + public static boolean debugging = false; + private static final Logger LOGGER = LoggerFactory.getLogger(Emulator.class); private static final String OS_NAME = (System.getProperty("os.name") != null ? System.getProperty("os.name") : "Unknown"); private static final String CLASS_PATH = (System.getProperty("java.class.path") != null ? System.getProperty("java.class.path") : "Unknown"); - - public final static int MAJOR = 4; - public final static int MINOR = 0; - public final static int BUILD = 0; - public final static String PREVIEW = "Developer Preview"; - - public static final String version = "Arcturus Morningstar" + " " + MAJOR + "." + MINOR + "." + BUILD + " " + PREVIEW; private static final String logo = "\n" + "███╗ ███╗ ██████╗ ██████╗ ███╗ ██╗██╗███╗ ██╗ ██████╗ ███████╗████████╗ █████╗ ██████╗ \n" + @@ -52,11 +56,6 @@ public final class Emulator { - public static String build = ""; - public static boolean isReady = false; - public static boolean isShuttingDown = false; - public static boolean stopped = false; - public static boolean debugging = false; private static int timeStarted = 0; private static Runtime runtime; private static ConfigurationManager config;