2016-04-29 20:04:12 -04:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
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
2020-05-06 05:48:49 -04:00
index 0000000000000000000000000000000000000000..0000000000000000000000000000000000000000 100644
2016-04-29 20:04:12 -04:00
--- a/src/main/java/net/minecraft/server/MinecraftServer.java
+++ b/src/main/java/net/minecraft/server/MinecraftServer.java
2019-06-25 02:47:58 +01:00
@@ -0,0 +0,0 @@ import org.spigotmc.SlackActivityAccountant; // Spigot
2016-04-29 20:04:12 -04:00
2020-06-25 04:00:35 -07:00
public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTask> implements IMojangStatistics, ICommandListener, AutoCloseable {
2016-04-29 20:04:12 -04:00
+ private static MinecraftServer SERVER; // Paper
public static final Logger LOGGER = LogManager.getLogger();
2019-04-26 20:05:36 -07:00
public static final File b = new File("usercache.json");
2020-06-25 04:00:35 -07:00
public static final WorldSettings c = new WorldSettings("Demo World", EnumGamemode.SURVIVAL, false, EnumDifficulty.NORMAL, false, new GameRules(), DataPackConfiguration.a);
2019-04-26 20:05:36 -07:00
@@ -0,0 +0,0 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
2020-06-25 04:00:35 -07:00
2020-08-24 22:22:08 -04:00
public MinecraftServer(OptionSet options, DataPackConfiguration datapackconfiguration, Thread thread, IRegistryCustom.Dimension iregistrycustom_dimension, Convertable.ConversionSession convertable_conversionsession, SaveData savedata, ResourcePackRepository resourcepackrepository, Proxy proxy, DataFixer datafixer, DataPackResources datapackresources, MinecraftSessionService minecraftsessionservice, GameProfileRepository gameprofilerepository, UserCache usercache, WorldLoadListenerFactory worldloadlistenerfactory) {
2019-04-26 20:05:36 -07:00
super("Server");
2016-04-29 20:04:12 -04:00
+ SERVER = this; // Paper - better singleton
2020-11-02 21:22:15 -05:00
this.m = new GameProfilerSwitcher(SystemUtils.a, this::ai);
2020-06-25 04:00:35 -07:00
this.methodProfiler = GameProfilerDisabled.a;
this.serverPing = new ServerPing();
2019-04-26 20:05:36 -07:00
@@ -0,0 +0,0 @@ public abstract class MinecraftServer extends IAsyncTaskHandlerReentrant<TickTas
2016-04-29 20:04:12 -04:00
@Deprecated
public static MinecraftServer getServer() {
- return (Bukkit.getServer() instanceof CraftServer) ? ((CraftServer) Bukkit.getServer()).getServer() : null;
2019-04-26 20:05:36 -07:00
+ return SERVER; // Paper
2016-04-29 20:04:12 -04:00
}
// CraftBukkit end
2020-06-25 04:00:35 -07:00