mirror of
https://github.com/PaperMC/Paper.git
synced 2025-08-15 12:13:54 -07:00
Added negative id check to Material.getMaterial(int). Fixes BUKKIT-3414
Negative id values would try to access the array out of bounds and throw an java.lang.ArrayIndexOutOfBoundsException. By: MikeMatrix <m.braun92@gmail.com>
This commit is contained in:
@@ -33,6 +33,7 @@ public class MaterialTest {
|
||||
@Test
|
||||
public void getByOutOfRangeId() {
|
||||
assertThat(Material.getMaterial(Integer.MAX_VALUE), is(nullValue()));
|
||||
assertThat(Material.getMaterial(Integer.MIN_VALUE), is(nullValue()));
|
||||
}
|
||||
|
||||
@Test
|
||||
|
Reference in New Issue
Block a user