Fix. Remove duplication of type(of:)

This commit is contained in:
Igor Kislyuk 2017-04-26 10:56:17 +03:00
parent f3c90a220d
commit 192e2cdd27
1 changed files with 1 additions and 1 deletions

View File

@ -27,7 +27,7 @@ open class XibView: UIView {
/// Nib name used to instantiate inner view
open var innerViewNibName: String {
return className(of: type(of: self))
return String(describing: type(of: self))
}
public convenience init() {