2021-06-11 14:02:28 +02:00
|
|
|
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
|
|
|
|
From: Mariell Hoversholm <proximyst@proximyst.com>
|
|
|
|
Date: Sun, 1 Nov 2020 16:43:11 +0100
|
|
|
|
Subject: [PATCH] Throw proper exception on empty JsonList file
|
|
|
|
|
|
|
|
|
|
|
|
diff --git a/src/main/java/net/minecraft/server/players/StoredUserList.java b/src/main/java/net/minecraft/server/players/StoredUserList.java
|
2021-06-15 04:59:31 +02:00
|
|
|
index 4b85943a704e0a5ca6b95f9cfcbfd1f9505c3b68..bfac2eb1ad06e82fed92574c1dd07e33f1440db7 100644
|
2021-06-11 14:02:28 +02:00
|
|
|
--- a/src/main/java/net/minecraft/server/players/StoredUserList.java
|
|
|
|
+++ b/src/main/java/net/minecraft/server/players/StoredUserList.java
|
|
|
|
@@ -189,6 +189,7 @@ public abstract class StoredUserList<K, V extends StoredUserEntry<K>> {
|
|
|
|
|
|
|
|
try {
|
|
|
|
JsonArray jsonarray = (JsonArray) StoredUserList.GSON.fromJson(bufferedreader, JsonArray.class);
|
|
|
|
+ com.google.common.base.Preconditions.checkState(jsonarray != null, "The file \"" + this.file.getName() + "\" is either empty or corrupt"); // Paper
|
|
|
|
|
|
|
|
this.map.clear();
|
|
|
|
Iterator iterator = jsonarray.iterator();
|