From 85cfc73bbfdbc736769ef006f7168985b341efc6 Mon Sep 17 00:00:00 2001 From: Ruan Lucas <79365912+RuanLucasGD@users.noreply.github.com> Date: Sat, 22 Apr 2023 14:51:40 -0400 Subject: [PATCH] clean code --- Source/Engine/Level/Tags.cpp | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Source/Engine/Level/Tags.cpp b/Source/Engine/Level/Tags.cpp index b16928630..dd4bc331a 100644 --- a/Source/Engine/Level/Tags.cpp +++ b/Source/Engine/Level/Tags.cpp @@ -57,8 +57,7 @@ Tag Tags::Get(const StringView& tagName) Array Tags::GetSubTags(Tag parentTag) { - Array subTags = Array(); - + Array subTags; auto _parentTagName = parentTag.ToString(); for (int i = 0; i < Tags::List.Count(); i++)