Skip to content

Commit

Permalink
Swift 4.2 update to AppDelegate
Browse files Browse the repository at this point in the history
  • Loading branch information
Raymond McCrae committed Nov 24, 2018
1 parent 63162d9 commit d727014
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 2 deletions.
2 changes: 1 addition & 1 deletion HTMLParserDemo/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -26,7 +26,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
var window: UIWindow?


func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
// Override point for customization after application launch.
return true
}
Expand Down
1 change: 0 additions & 1 deletion Sources/HTMLSAXParser/HTMLSAXParser.swift
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,6 @@ public protocol HTMLSAXParseContext {

}


/// The HTMLSAXParser is a SAX style parser for HTML similar to NSXMLParser, however it uses enums with
/// associated types for the parsing events, rather than a delegate class. It is implemented as a simple
/// light-weight wrapper around HTMLParser found within the libxml2 library.
Expand Down

0 comments on commit d727014

Please sign in to comment.