summaryrefslogtreecommitdiffstats
path: root/src/main/java/org/bukkit/block
diff options
context:
space:
mode:
authorBlackHole <black-hole@live.com>2016-03-01 08:30:02 +1100
committermd_5 <git@md-5.net>2016-03-01 08:30:02 +1100
commit6dd5aa2ce1e9195fda5720a9caff48f15ecf6335 (patch)
tree723ab41544f5e4672a52dc9f0f91545e8afc6e9b /src/main/java/org/bukkit/block
parentff2d64d2b948c960828f056b51c8a7ef33e491ff (diff)
downloadbukkit-6dd5aa2ce1e9195fda5720a9caff48f15ecf6335.tar
bukkit-6dd5aa2ce1e9195fda5720a9caff48f15ecf6335.tar.gz
bukkit-6dd5aa2ce1e9195fda5720a9caff48f15ecf6335.tar.lz
bukkit-6dd5aa2ce1e9195fda5720a9caff48f15ecf6335.tar.xz
bukkit-6dd5aa2ce1e9195fda5720a9caff48f15ecf6335.zip
Remove EntityType and some deprecated Entity methods
Replaced by EntityType / other methods since February 2012 and April 2012 respectively.
Diffstat (limited to 'src/main/java/org/bukkit/block')
-rw-r--r--src/main/java/org/bukkit/block/CreatureSpawner.java37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/main/java/org/bukkit/block/CreatureSpawner.java b/src/main/java/org/bukkit/block/CreatureSpawner.java
index e54d9972..cf4fb717 100644
--- a/src/main/java/org/bukkit/block/CreatureSpawner.java
+++ b/src/main/java/org/bukkit/block/CreatureSpawner.java
@@ -1,6 +1,5 @@
package org.bukkit.block;
-import org.bukkit.entity.CreatureType;
import org.bukkit.entity.EntityType;
/**
@@ -12,15 +11,6 @@ public interface CreatureSpawner extends BlockState {
* Get the spawner's creature type.
*
* @return The creature type.
- * @deprecated In favour of {@link #getSpawnedType()}.
- */
- @Deprecated
- public CreatureType getCreatureType();
-
- /**
- * Get the spawner's creature type.
- *
- * @return The creature type.
*/
public EntityType getSpawnedType();
@@ -32,24 +22,6 @@ public interface CreatureSpawner extends BlockState {
public void setSpawnedType(EntityType creatureType);
/**
- * Set the spawner creature type.
- *
- * @param creatureType The creature type.
- * @deprecated In favour of {@link #setSpawnedType(EntityType)}.
- */
- @Deprecated
- public void setCreatureType(CreatureType creatureType);
-
- /**
- * Get the spawner's creature type.
- *
- * @return The creature type's name.
- * @deprecated Use {@link #getCreatureTypeName()}.
- */
- @Deprecated
- public String getCreatureTypeId();
-
- /**
* Set the spawner mob type.
*
* @param creatureType The creature type's name.
@@ -64,15 +36,6 @@ public interface CreatureSpawner extends BlockState {
public String getCreatureTypeName();
/**
- * Set the spawner mob type.
- *
- * @param creatureType The creature type's name.
- * @deprecated Use {@link #setCreatureTypeByName(String)}.
- */
- @Deprecated
- public void setCreatureTypeId(String creatureType);
-
- /**
* Get the spawner's delay.
*
* @return The delay.