diff --git a/Sources/Silica/CGAffineTransform.swift b/Sources/Silica/CGAffineTransform.swift index f5984d2..b6cb61a 100644 --- a/Sources/Silica/CGAffineTransform.swift +++ b/Sources/Silica/CGAffineTransform.swift @@ -26,11 +26,6 @@ public struct CGAffineTransform { // MARK: - Initialization - public init(a: CGFloat, b: CGFloat, c: CGFloat, d: CGFloat, tx: CGFloat, ty: CGFloat) { - - self.init(a: a, b: b, c: c, d: d, tx: tx, ty: ty) - } - public static let identity = CGAffineTransform(a: 1, b: 0, c: 0, d: 1, tx: 0, ty: 0) }