From 2c33d8429e3cdf0c44d44e99e73d1bb97e4942f0 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Sun, 3 Jul 2022 20:08:56 +0100 Subject: [PATCH] tests: remove unnecessary Block::getName() override --- tests/phpunit/block/OutOfBoundsBlock.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/tests/phpunit/block/OutOfBoundsBlock.php b/tests/phpunit/block/OutOfBoundsBlock.php index 21cbf9a9f..6a4a2edcb 100644 --- a/tests/phpunit/block/OutOfBoundsBlock.php +++ b/tests/phpunit/block/OutOfBoundsBlock.php @@ -25,7 +25,4 @@ namespace pocketmine\block; class OutOfBoundsBlock extends Block{ - public function getName() : string{ - return "Out of Bounds Block"; - } }