Closed jverdi closed 4 years ago
In the UIImage extension, both the constrained(by:) and filling(size:) seemingly have a bug where the UIImage ivar size and local parameter size share the same name and thus, the methods are just constraining/filling a size against itself.
constrained(by:)
filling(size:)
size
Thanks for catching this!
In the UIImage extension, both the
constrained(by:)
andfilling(size:)
seemingly have a bug where the UIImage ivarsize
and local parametersize
share the same name and thus, the methods are just constraining/filling a size against itself.