[Bleeding] Cleanup clone methods.

By: Wesley Wolfe <weswolf@aol.com>
This commit is contained in:
Bukkit/Spigot
2012-02-14 01:49:06 -06:00
parent ec40583deb
commit 8bc2cf4969
41 changed files with 204 additions and 30 deletions

View File

@@ -44,4 +44,9 @@ public class MonsterEggs extends TexturedMaterial {
public List<Material> getTextures() {
return textures;
}
@Override
public MonsterEggs clone() {
return (MonsterEggs) super.clone();
}
}