SPIGOT-2499: Remove final from ItemStack hashCode

By: md_5 <git@md-5.net>
This commit is contained in:
Bukkit/Spigot 2016-07-07 10:49:27 +10:00
parent 7a14c68810
commit ef24ef29c8

View file

@ -359,7 +359,7 @@ public class ItemStack implements Cloneable, ConfigurationSerializable {
@Override
@Utility
public final int hashCode() {
public int hashCode() {
int hash = 1;
hash = hash * 31 + getTypeId();