From 2c8cc0c9ca1ad6a8493ba8e0d9609641f6857132 Mon Sep 17 00:00:00 2001 From: Kevin G Christiano Date: Tue, 3 Aug 2021 14:01:01 -0400 Subject: [PATCH] removed comments --- MVMCoreUI/Utility/MVMCoreUIUtility+Extension.swift | 2 -- 1 file changed, 2 deletions(-) diff --git a/MVMCoreUI/Utility/MVMCoreUIUtility+Extension.swift b/MVMCoreUI/Utility/MVMCoreUIUtility+Extension.swift index 465f266f..aa54760a 100644 --- a/MVMCoreUI/Utility/MVMCoreUIUtility+Extension.swift +++ b/MVMCoreUI/Utility/MVMCoreUIUtility+Extension.swift @@ -22,7 +22,6 @@ public extension MVMCoreUIUtility { var queue = [UIView]() - // Reversed the array to first check views at the front. for view in views { if view is T { return view as? T @@ -47,7 +46,6 @@ public extension MVMCoreUIUtility { var queue = [UIView]() var matching = [T]() - // Reversed the array to first check views at the front. for view in views { if view is T { matching.append(view as! T)