changes size object to private since it shouldn't be accessed from outside the class

This commit is contained in:
Robinson, Blake 2019-12-12 15:01:54 -05:00
parent 3fc3b6cb0a
commit d3dbfdd997

View File

@ -10,7 +10,7 @@ import UIKit
@objcMembers open class Link: MFCustomButton {
lazy var sizeObject: MFSizeObject? = {
private lazy var sizeObject: MFSizeObject? = {
return MFSizeObject(standardSize: 30, standardiPadPortraitSize: 36, iPadProLandscapeSize: 42)
}()