diff options
author | Nassim Jahnke <[email protected]> | 2024-06-14 14:11:52 +0200 |
---|---|---|
committer | Nassim Jahnke <[email protected]> | 2024-06-14 14:11:52 +0200 |
commit | 0d3ce2d704f295b0e48795ea8145134bed9f4cb1 (patch) | |
tree | a2b93e2e167d2119feff6fe62007580ac662fd59 /patches/server/0655-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch | |
parent | 3c04f9f668c3a42cb294c5e55a846793894312e5 (diff) | |
download | Paper-0d3ce2d704f295b0e48795ea8145134bed9f4cb1.tar.gz Paper-0d3ce2d704f295b0e48795ea8145134bed9f4cb1.zip |
Fix more compile issues
Diffstat (limited to 'patches/server/0655-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch')
-rw-r--r-- | patches/server/0655-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch | 18 |
1 files changed, 18 insertions, 0 deletions
diff --git a/patches/server/0655-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch b/patches/server/0655-Add-missing-IAE-check-for-PersistentDataContainer-ha.patch new file mode 100644 index 0000000000..be0eedab93 --- /dev/null +++ b/patches/server/0655-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; + } + |