From 3b4e9eea9677e8e432dd6354a26f3e40d3ed386d Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Fri, 25 Sep 2020 17:43:00 +0100 Subject: [PATCH] RuntimeBlockMapping: drop useless doc comment --- src/network/mcpe/convert/RuntimeBlockMapping.php | 3 --- 1 file changed, 3 deletions(-) diff --git a/src/network/mcpe/convert/RuntimeBlockMapping.php b/src/network/mcpe/convert/RuntimeBlockMapping.php index 3f17ebd1e..1de7e60e3 100644 --- a/src/network/mcpe/convert/RuntimeBlockMapping.php +++ b/src/network/mcpe/convert/RuntimeBlockMapping.php @@ -139,9 +139,6 @@ final class RuntimeBlockMapping{ return $this->legacyToRuntimeMap[$internalStateId] ?? $this->legacyToRuntimeMap[BlockLegacyIds::INFO_UPDATE << 4]; } - /** - * @return int - */ public function fromRuntimeId(int $runtimeId) : int{ return $this->runtimeToLegacyMap[$runtimeId]; }