Fix order of modifiers in SongodaCore-class

This commit is contained in:
Christian Koop 2022-11-26 20:23:45 +01:00
parent 75b497a163
commit bc56347727
No known key found for this signature in database
GPG Key ID: 89A8181384E010A3
1 changed files with 5 additions and 5 deletions

View File

@ -41,7 +41,7 @@ import java.util.logging.Level;
import java.util.logging.Logger;
public class SongodaCore {
private final static Logger logger = Logger.getLogger("SongodaCore");
private static final Logger logger = Logger.getLogger("SongodaCore");
/**
* Whenever we make a major change to the core GUI, updater,
@ -50,22 +50,22 @@ public class SongodaCore {
* @deprecated The Core's version should be used instead as it uses Semantic Versioning
*/
@Deprecated
private final static int coreRevision = 9;
private static final int coreRevision = 9;
/**
* @since coreRevision 6
* @deprecated Is being replaced by {@link SongodaCoreConstants#getCoreVersion()} which is automatically kept up to date.
*/
@Deprecated
private final static String coreVersion = SongodaCoreConstants.getCoreVersion();
private static final String coreVersion = SongodaCoreConstants.getCoreVersion();
/**
* This is specific to the website api
*/
@Deprecated
private final static int updaterVersion = 1;
private static final int updaterVersion = 1;
private final static Set<PluginInfo> registeredPlugins = new HashSet<>();
private static final Set<PluginInfo> registeredPlugins = new HashSet<>();
private static SongodaCore INSTANCE = null;