Skip to content

Commit

Permalink
fix: the AnyItem protocol is now correctly using AnyObject instead of…
Browse files Browse the repository at this point in the history
… class
  • Loading branch information
kevinrenskers committed Jul 11, 2021
1 parent 3b83654 commit 17f65df
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions Example/Package.resolved
Original file line number Diff line number Diff line change
Expand Up @@ -6,8 +6,8 @@
"repositoryURL": "https://github.com/brokenhandsio/cmark-gfm.git",
"state": {
"branch": null,
"revision": "c25ea288d0eb50c5c1150e7fdda675d5e9b1b6bb",
"version": "2.0.0"
"revision": "e97450a77a40f12b4f88f95891621c3b5d8669de",
"version": "2.1.0"
}
},
{
Expand Down
2 changes: 1 addition & 1 deletion Sources/Saga/Item.swift
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ public struct EmptyMetadata: Metadata {
public init() {}
}

public protocol AnyItem: class {
public protocol AnyItem: AnyObject {
var relativeSource: Path { get }
var filenameWithoutExtension: String { get }
var relativeDestination: Path { get set }
Expand Down

0 comments on commit 17f65df

Please sign in to comment.