remove anyobject

Signed-off-by: Matt Bruce <matt.bruce@verizon.com>
This commit is contained in:
Matt Bruce 2023-04-26 15:42:31 -05:00
parent f41e6f9c9c
commit 891cc9c016
2 changed files with 2 additions and 2 deletions

View File

@ -7,6 +7,6 @@
import Foundation
public protocol Disabling: AnyObject {
public protocol Disabling {
var disabled: Bool { get set }
}

View File

@ -16,6 +16,6 @@ public enum Surface: String, Equatable {
}
}
public protocol Surfaceable: AnyObject {
public protocol Surfaceable {
var surface: Surface { get set }
}