aboutsummaryrefslogtreecommitdiffhomepage
path: root/patches/unapplied/server/0640-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch
diff options
context:
space:
mode:
authorNassim Jahnke <[email protected]>2024-12-03 17:58:41 +0100
committerNassim Jahnke <[email protected]>2024-12-03 17:58:41 +0100
commitc0a3d51ab35930e410fcd9752ceaff6c3f581c24 (patch)
treef53076a8b0787d2f544f73f468df94619e5eb1a5 /patches/unapplied/server/0640-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch
parentda7138233f6392e791d790d1c3407414c855f9c2 (diff)
downloadPaper-c0a3d51ab35930e410fcd9752ceaff6c3f581c24.tar.gz
Paper-c0a3d51ab35930e410fcd9752ceaff6c3f581c24.zip
Start update, apply API patches
Diffstat (limited to 'patches/unapplied/server/0640-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch')
-rw-r--r--patches/unapplied/server/0640-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch18
1 files changed, 18 insertions, 0 deletions
diff --git a/patches/unapplied/server/0640-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch b/patches/unapplied/server/0640-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch
new file mode 100644
index 0000000000..be0eedab93
--- /dev/null
+++ b/patches/unapplied/server/0640-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch
@@ -0,0 +1,18 @@
+From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
+From: u9g <[email protected]>
+Date: Mon, 3 Jan 2022 23:32:42 -0500
+Subject: [PATCH] Add missing IAE check for PersistentDataContainer#has
+
+
+diff --git a/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java b/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java
+index 3001bb0e3d4af9b16645a0136093db594b89ab01..984e988a47aa55a3fd92198e379d0f92f511daef 100644
+--- a/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java
++++ b/src/main/java/org/bukkit/craftbukkit/persistence/CraftPersistentDataContainer.java
+@@ -57,6 +57,7 @@ public class CraftPersistentDataContainer implements PersistentDataContainer {
+
+ @Override
+ public boolean has(NamespacedKey key) {
++ Preconditions.checkArgument(key != null, "The provided key for the custom value was null"); // Paper
+ return this.customDataTags.get(key.toString()) != null;
+ }
+