mirror of
https://github.com/IntellectualSites/PlotSquared.git
synced 2024-11-22 05:06:44 +01:00
fix: add null check for bukkit world ref (#4443)
This commit is contained in:
parent
c4bd6b6500
commit
670f5a802e
@ -75,7 +75,7 @@ public class BukkitWorld implements World<org.bukkit.World> {
|
|||||||
public static @NonNull BukkitWorld of(final org.bukkit.World world) {
|
public static @NonNull BukkitWorld of(final org.bukkit.World world) {
|
||||||
WeakReference<BukkitWorld> bukkitWorldRef = worldMap.get(world.getName());
|
WeakReference<BukkitWorld> bukkitWorldRef = worldMap.get(world.getName());
|
||||||
BukkitWorld bukkitWorld;
|
BukkitWorld bukkitWorld;
|
||||||
if ((bukkitWorld = bukkitWorldRef.get()) != null && world.equals(bukkitWorld.world.get())) {
|
if (bukkitWorldRef != null && (bukkitWorld = bukkitWorldRef.get()) != null && world.equals(bukkitWorld.world.get())) {
|
||||||
return bukkitWorld;
|
return bukkitWorld;
|
||||||
}
|
}
|
||||||
bukkitWorld = new BukkitWorld(world);
|
bukkitWorld = new BukkitWorld(world);
|
||||||
|
Loading…
Reference in New Issue
Block a user