Imports cleanup

This commit is contained in:
Dylan K. Taylor 2017-09-28 10:51:05 +01:00
parent 7dc1fc54b1
commit d0bf0ff083
10 changed files with 4 additions and 12 deletions

View File

@ -71,7 +71,6 @@ use pocketmine\event\Timings;
use pocketmine\event\TranslationContainer;
use pocketmine\inventory\BigCraftingGrid;
use pocketmine\inventory\CraftingGrid;
use pocketmine\inventory\FurnaceInventory;
use pocketmine\inventory\Inventory;
use pocketmine\inventory\PlayerCursorInventory;
use pocketmine\inventory\PlayerInventory;
@ -99,7 +98,6 @@ use pocketmine\nbt\tag\StringTag;
use pocketmine\network\mcpe\PlayerNetworkSessionAdapter;
use pocketmine\network\mcpe\protocol\AdventureSettingsPacket;
use pocketmine\network\mcpe\protocol\AnimatePacket;
use pocketmine\network\mcpe\protocol\AvailableCommandsPacket;
use pocketmine\network\mcpe\protocol\BatchPacket;
use pocketmine\network\mcpe\protocol\BlockEntityDataPacket;
use pocketmine\network\mcpe\protocol\BlockPickRequestPacket;
@ -158,7 +156,6 @@ use pocketmine\tile\ItemFrame;
use pocketmine\tile\Spawnable;
use pocketmine\tile\Tile;
use pocketmine\utils\TextFormat;
use pocketmine\utils\Utils;
use pocketmine\utils\UUID;

View File

@ -26,7 +26,6 @@ namespace pocketmine\block;
use pocketmine\block\utils\ColorBlockMetaHelper;
use pocketmine\item\Tool;
use pocketmine\level\Level;
use pocketmine\level\Position;
class ConcretePowder extends Fallable{

View File

@ -24,7 +24,6 @@ declare(strict_types=1);
namespace pocketmine\block;
use pocketmine\item\Item;
use pocketmine\item\ItemFactory;
use pocketmine\level\Level;
use pocketmine\math\AxisAlignedBB;
use pocketmine\math\Vector3;

View File

@ -24,7 +24,6 @@ declare(strict_types=1);
namespace pocketmine\block;
use pocketmine\item\Item;
use pocketmine\item\ItemFactory;
use pocketmine\level\Level;
use pocketmine\math\Vector3;
use pocketmine\nbt\tag\{

View File

@ -29,7 +29,6 @@ use pocketmine\event\entity\EntityBlockChangeEvent;
use pocketmine\event\entity\EntityDamageEvent;
use pocketmine\item\ItemFactory;
use pocketmine\level\Position;
use pocketmine\math\Vector3;
use pocketmine\nbt\tag\ByteTag;
use pocketmine\nbt\tag\IntTag;
use pocketmine\network\mcpe\protocol\AddEntityPacket;

View File

@ -24,8 +24,8 @@ declare(strict_types=1);
namespace pocketmine\event\level;
use pocketmine\level\Level;
use pocketmine\level\format\Chunk;
use pocketmine\level\Level;
/**
* Chunk-related events

View File

@ -24,8 +24,8 @@ declare(strict_types=1);
namespace pocketmine\event\level;
use pocketmine\level\Level;
use pocketmine\level\format\Chunk;
use pocketmine\level\Level;
/**
* Called when a Chunk is loaded

View File

@ -25,8 +25,8 @@ declare(strict_types=1);
namespace pocketmine\event\player\cheat;
use pocketmine\event\Cancellable;
use pocketmine\Player;
use pocketmine\math\Vector3;
use pocketmine\Player;
/**
* Called when a player attempts to perform movement cheats such as clipping through blocks.

View File

@ -24,8 +24,8 @@ declare(strict_types=1);
namespace pocketmine\level\format\io\region;
use pocketmine\level\format\Chunk;
use pocketmine\level\format\io\BaseLevelProvider;
use pocketmine\level\format\ChunkException;
use pocketmine\level\format\io\BaseLevelProvider;
use pocketmine\level\format\io\ChunkUtils;
use pocketmine\level\format\SubChunk;
use pocketmine\level\generator\Generator;

View File

@ -27,7 +27,6 @@ use pocketmine\network\mcpe\protocol\LoginPacket;
use pocketmine\Player;
use pocketmine\scheduler\AsyncTask;
use pocketmine\Server;
use pocketmine\utils\MainLogger;
class VerifyLoginTask extends AsyncTask{