From 64cab4d1377193794abfa1a7a37b5f5913d060c4 Mon Sep 17 00:00:00 2001 From: Cameron Taylor Date: Thu, 4 Apr 2024 05:37:48 -0400 Subject: [PATCH] removed duplicate merge --- source/funkin/util/tools/MapTools.hx | 12 ------------ 1 file changed, 12 deletions(-) diff --git a/source/funkin/util/tools/MapTools.hx b/source/funkin/util/tools/MapTools.hx index beee1219b..b98cb0adf 100644 --- a/source/funkin/util/tools/MapTools.hx +++ b/source/funkin/util/tools/MapTools.hx @@ -33,18 +33,6 @@ class MapTools return map.copy(); } - public static function merge(a:Map, b:Map):Map - { - var result = a.copy(); - - for (pair in b.keyValueIterator()) - { - result.set(pair.key, pair.value); - } - - return result; - } - /** * Create a new map which is a combination of the two given maps. * @param a The base map.