2019-06-14 04:27:40 +02:00
From 5c2318cc96c81ecb1bec910cd84762c20cbfb5b1 Mon Sep 17 00:00:00 2001
2016-04-30 02:04:12 +02:00
From: Aikar <aikar@aikar.co>
Date: Thu, 28 Apr 2016 00:57:27 -0400
Subject: [PATCH] remove null possibility for getServer singleton
to stop IDE complaining about potential NPE
diff --git a/src/main/java/net/minecraft/server/MinecraftServer.java b/src/main/java/net/minecraft/server/MinecraftServer.java
2019-06-06 17:36:57 +02:00
index 7a860231e4..d3d8fffeb0 100644
2016-04-30 02:04:12 +02:00
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
2019-04-27 05:05:36 +02:00
@@ -61,6 +61,7 @@ import co.aikar.timings.MinecraftTimings; // Paper
2016-04-30 02:04:12 +02:00
2019-04-27 05:05:36 +02:00
public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTask> implements IMojangStatistics, ICommandListener, AutoCloseable, Runnable {
2016-04-30 02:04:12 +02:00
+ private static MinecraftServer SERVER; // Paper
public static final Logger LOGGER = LogManager.getLogger();
2019-04-27 05:05:36 +02:00
public static final File b = new File("usercache.json");
public static final WorldSettings c = (new WorldSettings((long) "North Carolina".hashCode(), EnumGamemode.SURVIVAL, true, false, WorldType.NORMAL)).a();
2019-05-06 04:58:04 +02:00
@@ -167,6 +168,7 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
2016-04-30 02:04:12 +02:00
2019-04-27 05:05:36 +02:00
public MinecraftServer(OptionSet options, Proxy proxy, DataFixer datafixer, CommandDispatcher commanddispatcher, YggdrasilAuthenticationService yggdrasilauthenticationservice, MinecraftSessionService minecraftsessionservice, GameProfileRepository gameprofilerepository, UserCache usercache, WorldLoadListenerFactory worldloadlistenerfactory, String s) {
super("Server");
2016-04-30 02:04:12 +02:00
+ SERVER = this; // Paper - better singleton
2019-04-27 05:05:36 +02:00
this.ae = new ResourceManager(EnumResourcePackType.SERVER_DATA, this.serverThread);
2019-01-01 04:15:55 +01:00
this.resourcePackRepository = new ResourcePackRepository<>(ResourcePackLoader::new);
2019-04-27 05:05:36 +02:00
this.ai = new CraftingManager();
2019-05-22 05:58:00 +02:00
@@ -1906,7 +1908,7 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
2019-04-27 05:05:36 +02:00
2016-04-30 02:04:12 +02:00
@Deprecated
public static MinecraftServer getServer() {
- return (Bukkit.getServer() instanceof CraftServer) ? ((CraftServer) Bukkit.getServer()).getServer() : null;
2019-04-27 05:05:36 +02:00
+ return SERVER; // Paper
2016-04-30 02:04:12 +02:00
}
// CraftBukkit end
2016-06-10 04:43:32 +02:00
}
2016-04-30 02:04:12 +02:00
--
2019-04-23 06:47:07 +02:00
2.21.0
2016-04-30 02:04:12 +02:00