Skip to content

Commit

Permalink
Updates for depricated keyword class (#15)
Browse files Browse the repository at this point in the history
  • Loading branch information
dppeak authored Apr 27, 2021
1 parent b3c4e48 commit 71d3e5f
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion Sources/QRoute/Driving/QRouteDriving.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public protocol QRouteDriving: class {
public protocol QRouteDriving: AnyObject {

func driveParent(from source: QRoutable,
input: QRouteResolving.Input?,
Expand Down
2 changes: 1 addition & 1 deletion Sources/QRoute/QRoutable.swift
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
public protocol QRoutable: class {
public protocol QRoutable: AnyObject {
var routeResolver: QRouteResolving! { get }
}
2 changes: 1 addition & 1 deletion Sources/QRoute/Resolving/QRouteResolving.swift
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
public protocol QRouteResolving: class {
public protocol QRouteResolving: AnyObject {
typealias Input = [String:Any]
typealias Completion = (QRoutable?)->()
typealias OnInput = (Input)->()
Expand Down

0 comments on commit 71d3e5f

Please sign in to comment.