Skip to content

Commit

Permalink
Fixed cannot force unwrap value of non-optional type 'FeedParser' on …
Browse files Browse the repository at this point in the history
…macOs example
  • Loading branch information
nmdias committed Jun 10, 2018
1 parent 3d36f55 commit fb16f8d
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Example macOS/ViewController.swift
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ class ViewController: NSViewController {
override func viewDidLoad() {
super.viewDidLoad()

let result = FeedParser(URL: feedURL)!.parse()
let result = FeedParser(URL: feedURL).parse()
self.feed = result.rssFeed
self.feedItemsTableView.reloadData()

Expand Down

0 comments on commit fb16f8d

Please sign in to comment.