Move no-longer-needed let _ =.

This commit is contained in:
Brent Simmons 2017-10-21 16:33:12 -07:00
parent f527353b58
commit c5c28464e0

View File

@ -45,7 +45,7 @@ struct FeedsImporter {
BatchUpdate.shared.perform {
for feed in feedsToImport {
if !account.hasFeed(with: feed.feedID) {
let _ = account.addFeed(feed, to: nil)
account.addFeed(feed, to: nil)
}
}
}