Removed unused imports

This commit is contained in:
Shoghi Cervantes 2014-11-04 12:08:24 +01:00
parent 8fd6582e74
commit 32dae93ef9
26 changed files with 0 additions and 43 deletions

View File

@ -40,7 +40,6 @@ use pocketmine\entity\PrimedTNT;
use pocketmine\entity\Snowball; use pocketmine\entity\Snowball;
use pocketmine\entity\Villager; use pocketmine\entity\Villager;
use pocketmine\entity\Zombie; use pocketmine\entity\Zombie;
use pocketmine\event\Event;
use pocketmine\event\HandlerList; use pocketmine\event\HandlerList;
use pocketmine\event\level\LevelInitEvent; use pocketmine\event\level\LevelInitEvent;
use pocketmine\event\level\LevelLoadEvent; use pocketmine\event\level\LevelLoadEvent;
@ -60,9 +59,6 @@ use pocketmine\level\generator\GenerationRequestManager;
use pocketmine\level\generator\Generator; use pocketmine\level\generator\Generator;
use pocketmine\level\generator\Normal; use pocketmine\level\generator\Normal;
use pocketmine\level\Level; use pocketmine\level\Level;
use pocketmine\level\Position;
use pocketmine\math\AxisAlignedBB;
use pocketmine\math\Vector3;
use pocketmine\metadata\EntityMetadataStore; use pocketmine\metadata\EntityMetadataStore;
use pocketmine\metadata\LevelMetadataStore; use pocketmine\metadata\LevelMetadataStore;
use pocketmine\metadata\PlayerMetadataStore; use pocketmine\metadata\PlayerMetadataStore;

View File

@ -25,7 +25,6 @@ use pocketmine\event\block\BlockSpreadEvent;
use pocketmine\item\Item; use pocketmine\item\Item;
use pocketmine\level\generator\object\TallGrass as TallGrassObject; use pocketmine\level\generator\object\TallGrass as TallGrassObject;
use pocketmine\level\Level; use pocketmine\level\Level;
use pocketmine\level\Position;
use pocketmine\math\Vector3; use pocketmine\math\Vector3;
use pocketmine\Player; use pocketmine\Player;
use pocketmine\Server; use pocketmine\Server;

View File

@ -24,7 +24,6 @@ namespace pocketmine\block;
use pocketmine\event\block\BlockSpreadEvent; use pocketmine\event\block\BlockSpreadEvent;
use pocketmine\item\Item; use pocketmine\item\Item;
use pocketmine\level\Level; use pocketmine\level\Level;
use pocketmine\level\Position;
use pocketmine\math\Vector3; use pocketmine\math\Vector3;
use pocketmine\Server; use pocketmine\Server;

View File

@ -23,7 +23,6 @@ namespace pocketmine\command\defaults;
use pocketmine\command\Command; use pocketmine\command\Command;
use pocketmine\command\CommandSender; use pocketmine\command\CommandSender;
use pocketmine\level\Position;
use pocketmine\math\Vector3; use pocketmine\math\Vector3;
use pocketmine\Player; use pocketmine\Player;
use pocketmine\utils\TextFormat; use pocketmine\utils\TextFormat;

View File

@ -23,7 +23,6 @@ namespace pocketmine\entity;
use pocketmine\level\format\FullChunk; use pocketmine\level\format\FullChunk;
use pocketmine\nbt\tag\Compound; use pocketmine\nbt\tag\Compound;
use pocketmine\nbt\tag\String;
use pocketmine\network\protocol\AddEntityPacket; use pocketmine\network\protocol\AddEntityPacket;
use pocketmine\network\protocol\SetEntityMotionPacket; use pocketmine\network\protocol\SetEntityMotionPacket;
use pocketmine\Player; use pocketmine\Player;

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Chicken extends Animal{ class Chicken extends Animal{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Cow extends Animal{ class Cow extends Animal{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Creeper extends Monster implements Explosive{ class Creeper extends Monster implements Explosive{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Egg extends Projectile{ class Egg extends Projectile{
} }

View File

@ -23,7 +23,6 @@ namespace pocketmine\entity;
use pocketmine\inventory\InventoryHolder; use pocketmine\inventory\InventoryHolder;
use pocketmine\nbt\tag\String;
class Enderman extends Monster implements InventoryHolder{ class Enderman extends Monster implements InventoryHolder{

View File

@ -30,7 +30,6 @@ use pocketmine\item\Item as ItemItem;
use pocketmine\math\Vector3; use pocketmine\math\Vector3;
use pocketmine\nbt\tag\Byte; use pocketmine\nbt\tag\Byte;
use pocketmine\nbt\tag\Int; use pocketmine\nbt\tag\Int;
use pocketmine\nbt\tag\String;
use pocketmine\network\protocol\AddEntityPacket; use pocketmine\network\protocol\AddEntityPacket;
use pocketmine\network\protocol\SetEntityMotionPacket; use pocketmine\network\protocol\SetEntityMotionPacket;
use pocketmine\Player; use pocketmine\Player;

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Ozelot extends Animal implements Tameable{ class Ozelot extends Animal implements Tameable{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Painting extends Hanging{ class Painting extends Hanging{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Pig extends Animal implements Rideable{ class Pig extends Animal implements Rideable{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class PigZombie extends Zombie{ class PigZombie extends Zombie{
} }

View File

@ -27,7 +27,6 @@ use pocketmine\event\entity\EntityRegainHealthEvent;
use pocketmine\event\entity\ExplosionPrimeEvent; use pocketmine\event\entity\ExplosionPrimeEvent;
use pocketmine\level\Explosion; use pocketmine\level\Explosion;
use pocketmine\nbt\tag\Byte; use pocketmine\nbt\tag\Byte;
use pocketmine\nbt\tag\String;
use pocketmine\network\protocol\AddEntityPacket; use pocketmine\network\protocol\AddEntityPacket;
use pocketmine\network\protocol\SetEntityMotionPacket; use pocketmine\network\protocol\SetEntityMotionPacket;
use pocketmine\Player; use pocketmine\Player;

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Sheep extends Animal implements Colorable{ class Sheep extends Animal implements Colorable{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Silverfish extends Monster{ class Silverfish extends Monster{
} }

View File

@ -21,8 +21,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Skeleton extends Monster implements ProjectileSource{ class Skeleton extends Monster implements ProjectileSource{
} }

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Slime extends Living{ class Slime extends Living{
} }

View File

@ -24,7 +24,6 @@ namespace pocketmine\entity;
use pocketmine\level\format\FullChunk; use pocketmine\level\format\FullChunk;
use pocketmine\nbt\tag\Compound; use pocketmine\nbt\tag\Compound;
use pocketmine\nbt\tag\String;
use pocketmine\network\protocol\AddEntityPacket; use pocketmine\network\protocol\AddEntityPacket;
use pocketmine\network\protocol\SetEntityMotionPacket; use pocketmine\network\protocol\SetEntityMotionPacket;
use pocketmine\Player; use pocketmine\Player;

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Spider extends Monster{ class Spider extends Monster{
} }

View File

@ -23,7 +23,6 @@ namespace pocketmine\entity;
use pocketmine\nbt\tag\Int; use pocketmine\nbt\tag\Int;
use pocketmine\nbt\tag\String;
use pocketmine\network\protocol\AddMobPacket; use pocketmine\network\protocol\AddMobPacket;
use pocketmine\network\protocol\SetEntityMotionPacket; use pocketmine\network\protocol\SetEntityMotionPacket;
use pocketmine\Player; use pocketmine\Player;

View File

@ -22,8 +22,6 @@
namespace pocketmine\entity; namespace pocketmine\entity;
use pocketmine\nbt\tag\String;
class Wolf extends Animal implements Tameable{ class Wolf extends Animal implements Tameable{
} }

View File

@ -24,7 +24,6 @@ namespace pocketmine\entity;
use pocketmine\event\entity\EntityDamageByEntityEvent; use pocketmine\event\entity\EntityDamageByEntityEvent;
use pocketmine\item\Item as ItemItem; use pocketmine\item\Item as ItemItem;
use pocketmine\nbt\tag\String;
use pocketmine\network\protocol\AddMobPacket; use pocketmine\network\protocol\AddMobPacket;
use pocketmine\network\protocol\SetEntityMotionPacket; use pocketmine\network\protocol\SetEntityMotionPacket;
use pocketmine\Player; use pocketmine\Player;

View File

@ -34,7 +34,6 @@ use pocketmine\nbt\tag\Byte;
use pocketmine\nbt\tag\Compound; use pocketmine\nbt\tag\Compound;
use pocketmine\nbt\tag\Enum; use pocketmine\nbt\tag\Enum;
use pocketmine\nbt\tag\Short; use pocketmine\nbt\tag\Short;
use pocketmine\nbt\tag\String;
use pocketmine\network\protocol\ContainerSetDataPacket; use pocketmine\network\protocol\ContainerSetDataPacket;
class Furnace extends Tile implements InventoryHolder, Container{ class Furnace extends Tile implements InventoryHolder, Container{