imports cleanup

This commit is contained in:
Dylan K. Taylor 2020-10-04 18:22:07 +01:00
parent d3a3a41d2b
commit 7ef794d725
3 changed files with 1 additions and 8 deletions

View File

@ -24,19 +24,13 @@ declare(strict_types=1);
namespace pocketmine\block; namespace pocketmine\block;
use pocketmine\block\tile\Sign as TileSign; use pocketmine\block\tile\Sign as TileSign;
use pocketmine\block\utils\BlockDataSerializer;
use pocketmine\block\utils\SignText; use pocketmine\block\utils\SignText;
use pocketmine\event\block\SignChangeEvent; use pocketmine\event\block\SignChangeEvent;
use pocketmine\item\Item;
use pocketmine\math\AxisAlignedBB; use pocketmine\math\AxisAlignedBB;
use pocketmine\math\Facing;
use pocketmine\math\Vector3;
use pocketmine\player\Player; use pocketmine\player\Player;
use pocketmine\utils\TextFormat; use pocketmine\utils\TextFormat;
use pocketmine\world\BlockTransaction;
use function array_map; use function array_map;
use function assert; use function assert;
use function floor;
use function strlen; use function strlen;
abstract class BaseSign extends Transparent{ abstract class BaseSign extends Transparent{

View File

@ -24,7 +24,6 @@ declare(strict_types=1);
namespace pocketmine\block; namespace pocketmine\block;
use pocketmine\block\BlockIdentifier as BID; use pocketmine\block\BlockIdentifier as BID;
use pocketmine\block\BlockIdentifierFlattened as BIDFlattened;
use pocketmine\block\BlockLegacyIds as Ids; use pocketmine\block\BlockLegacyIds as Ids;
use pocketmine\block\tile\Sign as TileSign; use pocketmine\block\tile\Sign as TileSign;
use pocketmine\block\utils\DyeColor; use pocketmine\block\utils\DyeColor;

View File

@ -23,9 +23,9 @@ declare(strict_types=1);
namespace pocketmine\network\mcpe\handler; namespace pocketmine\network\mcpe\handler;
use pocketmine\block\BaseSign;
use pocketmine\block\BlockLegacyIds; use pocketmine\block\BlockLegacyIds;
use pocketmine\block\ItemFrame; use pocketmine\block\ItemFrame;
use pocketmine\block\BaseSign;
use pocketmine\block\utils\SignText; use pocketmine\block\utils\SignText;
use pocketmine\entity\animation\ConsumingItemAnimation; use pocketmine\entity\animation\ConsumingItemAnimation;
use pocketmine\entity\InvalidSkinException; use pocketmine\entity\InvalidSkinException;