From f33633efcbd239433c18cfccffe0ee582d7a76b8 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 4 Feb 2022 00:23:01 +0000 Subject: [PATCH] Remove rogue var_dump --- .../blockstate/upgrade/BlockStateUpgradeSchemaUtils.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/data/bedrock/blockstate/upgrade/BlockStateUpgradeSchemaUtils.php b/src/data/bedrock/blockstate/upgrade/BlockStateUpgradeSchemaUtils.php index 2430069cf..ce8b7534e 100644 --- a/src/data/bedrock/blockstate/upgrade/BlockStateUpgradeSchemaUtils.php +++ b/src/data/bedrock/blockstate/upgrade/BlockStateUpgradeSchemaUtils.php @@ -41,7 +41,6 @@ use function is_object; use function is_string; use function json_decode; use function ksort; -use function var_dump; use const JSON_THROW_ON_ERROR; use const SORT_NUMERIC; @@ -199,8 +198,6 @@ final class BlockStateUpgradeSchemaUtils{ $filename = $matches[0]; $priority = (int) $matches[1]; - var_dump($filename); - $fullPath = Path::join($path, $filename); //TODO: should we bother handling exceptions in here?