Paper/patches/api/0277-Cache-the-result-of-Material-isBlock.patch

39 lines
1.4 KiB
Diff
Raw Normal View History

2021-06-11 12:02:28 +00:00
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001
2021-06-17 09:37:24 +00:00
From: Jason Penilla <11360596+jpenilla@users.noreply.github.com>
2021-06-11 12:02:28 +00:00
Date: Tue, 2 Mar 2021 15:24:58 -0800
Subject: [PATCH] Cache the result of Material#isBlock
diff --git a/src/main/java/org/bukkit/Material.java b/src/main/java/org/bukkit/Material.java
2021-06-15 02:59:31 +00:00
index 1efc97d88c38863bcd6cd4c11c8b88a18ee06b25..5ff032f73d88dd91163ff3e6c89dcd0d1507228c 100644
2021-06-11 12:02:28 +00:00
--- a/src/main/java/org/bukkit/Material.java
+++ b/src/main/java/org/bukkit/Material.java
2021-06-15 02:59:31 +00:00
@@ -3936,6 +3936,7 @@ public enum Material implements Keyed {
2021-06-11 12:02:28 +00:00
public final Class<?> data;
private final boolean legacy;
private final NamespacedKey key;
+ private boolean isBlock; // Paper
private Material(final int id) {
this(id, 64);
2021-06-15 02:59:31 +00:00
@@ -4133,6 +4134,11 @@ public enum Material implements Keyed {
2021-06-11 12:02:28 +00:00
* @return true if this material is a block
*/
public boolean isBlock() {
+ // Paper start - cache isBlock
+ return this.isBlock;
+ }
+ private boolean isBlock0() {
+ // Paper end
switch (this) {
//<editor-fold defaultstate="collapsed" desc="isBlock">
case ACACIA_BUTTON:
2021-06-15 02:59:31 +00:00
@@ -5214,6 +5220,7 @@ public enum Material implements Keyed {
2021-06-11 12:02:28 +00:00
static {
for (Material material : values()) {
BY_NAME.put(material.name(), material);
+ material.isBlock = material.isBlock0(); // Paper
}
}