Taking out the print statement when running through all the children

This commit is contained in:
Ryan 2018-12-20 23:52:58 -05:00
parent 5aa05cf578
commit ec64bbc0d4
1 changed files with 0 additions and 1 deletions

View File

@ -89,7 +89,6 @@ extension Array where Iterator.Element == Mirror {
var allChild : [Mirror.Child] = []
for mirror in self {
mirror.children.forEach({ (child) in
print(child)
// Make sure our child has a label & the string describing the value is not nil. (Making optionals supported)
if !includingNilValues {
if child.label.isNotNil, String(describing: child.value) != "nil" {