Merge branch 'feature/comment_correction' into 'develop'

removed comments

See merge request BPHV_MIPS/mvm_core_ui!749
This commit is contained in:
Pfeil, Scott Robert 2021-08-03 18:02:21 +00:00
commit 98e97d28a4

View File

@ -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)