Taking out the print statement when running through all the children
This commit is contained in:
parent
5aa05cf578
commit
ec64bbc0d4
|
@ -89,7 +89,6 @@ extension Array where Iterator.Element == Mirror {
|
||||||
var allChild : [Mirror.Child] = []
|
var allChild : [Mirror.Child] = []
|
||||||
for mirror in self {
|
for mirror in self {
|
||||||
mirror.children.forEach({ (child) in
|
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)
|
// Make sure our child has a label & the string describing the value is not nil. (Making optionals supported)
|
||||||
if !includingNilValues {
|
if !includingNilValues {
|
||||||
if child.label.isNotNil, String(describing: child.value) != "nil" {
|
if child.label.isNotNil, String(describing: child.value) != "nil" {
|
||||||
|
|
Loading…
Reference in New Issue