From 03533fc211b263454ffc0c4002bc40587a79ca3a Mon Sep 17 00:00:00 2001 From: Zach Eriksen Date: Fri, 21 Aug 2020 16:55:17 -0500 Subject: [PATCH] =?UTF-8?q?Removed=20Dumb=20=F0=9F=92=A9?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Sources/Dumb/Dumb.swift | 8 +------- 1 file changed, 1 insertion(+), 7 deletions(-) diff --git a/Sources/Dumb/Dumb.swift b/Sources/Dumb/Dumb.swift index 63676d3..3c00c14 100644 --- a/Sources/Dumb/Dumb.swift +++ b/Sources/Dumb/Dumb.swift @@ -10,10 +10,6 @@ public protocol DumbProtocol { var dictionary: [AnyHashable: Any] { get set } } -public protocol DumbClassProtocol: class, DumbProtocol { - var dumb: DumbClassProtocol { get set } -} - public struct DumbStruct: DumbProtocol { public var bool: Bool public var string: String @@ -43,9 +39,7 @@ public struct DumbStruct: DumbProtocol { } } -public class DumbClass: DumbClassProtocol { - public var dumb: DumbClassProtocol = DumbClass() - +public class DumbClass: DumbProtocol { public var bool: Bool public var string: String public var int: Int