From c564655f9babf0f39f6407277ce7773e070f9fb5 Mon Sep 17 00:00:00 2001 From: "Dylan K. Taylor" Date: Mon, 27 Nov 2017 17:49:08 +0000 Subject: [PATCH] Chunk: Remove unnecessary default values these are assigned in the constructor anyway. --- src/pocketmine/level/format/Chunk.php | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/src/pocketmine/level/format/Chunk.php b/src/pocketmine/level/format/Chunk.php index 2aa8c0740..c121d5a21 100644 --- a/src/pocketmine/level/format/Chunk.php +++ b/src/pocketmine/level/format/Chunk.php @@ -54,10 +54,10 @@ class Chunk{ protected $height = Chunk::MAX_SUBCHUNKS; /** @var \SplFixedArray|SubChunkInterface[] */ - protected $subChunks = []; + protected $subChunks; /** @var EmptySubChunk */ - protected $emptySubChunk = null; + protected $emptySubChunk; /** @var Tile[] */ protected $tiles = [];