Use synthesized init.

This commit is contained in:
Brent Simmons 2018-08-25 17:39:03 -07:00
parent 9263ffcb79
commit d4e10bdf47
1 changed files with 0 additions and 7 deletions

View File

@ -27,13 +27,6 @@ struct FeedSpecifier: Hashable {
return calculatedScore()
}
init(title: String?, urlString: String, source: Source) {
self.title = title
self.urlString = urlString
self.source = source
}
func feedSpecifierByMerging(_ feedSpecifier: FeedSpecifier) -> FeedSpecifier {
// Take the best data (non-nil title, better source) to create a new feed specifier;