Removed unused imports

This commit is contained in:
Shoghi Cervantes
2014-10-29 01:14:09 +01:00
parent 0680b98380
commit 78f8d0280d
19 changed files with 8 additions and 28 deletions

View File

@ -24,8 +24,6 @@
*/
namespace pocketmine\event;
use pocketmine\plugin\PluginManager;
abstract class Event{
/**

View File

@ -21,9 +21,7 @@
namespace pocketmine\event\block;
use pocketmine\block\Block;
use pocketmine\event\Cancellable;
use pocketmine\Player;
/**
* Called when a block tries to be updated due to a neighbor change

View File

@ -22,9 +22,9 @@
namespace pocketmine\event\entity;
use pocketmine\entity\Creature;
use pocketmine\entity\Item;
use pocketmine\entity\Entity;
use pocketmine\entity\Human;
use pocketmine\entity\Item;
use pocketmine\entity\Projectile;
use pocketmine\entity\Vehicle;

View File

@ -22,9 +22,9 @@
namespace pocketmine\event\entity;
use pocketmine\entity\Creature;
use pocketmine\entity\Item;
use pocketmine\entity\Entity;
use pocketmine\entity\Human;
use pocketmine\entity\Item;
use pocketmine\entity\Projectile;
use pocketmine\entity\Vehicle;

View File

@ -21,9 +21,9 @@
namespace pocketmine\event\inventory;
use pocketmine\entity\Item;
use pocketmine\event\Cancellable;
use pocketmine\inventory\Inventory;
use pocketmine\entity\Item;
class InventoryPickupItemEvent extends InventoryEvent implements Cancellable{
public static $handlerList = null;