Skip to content

Commit d727014

Browse files
author
Raymond McCrae
committed
Swift 4.2 update to AppDelegate
1 parent 63162d9 commit d727014

File tree

2 files changed

+1
-2
lines changed

2 files changed

+1
-2
lines changed

HTMLParserDemo/AppDelegate.swift

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ class AppDelegate: UIResponder, UIApplicationDelegate {
2626
var window: UIWindow?
2727

2828

29-
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplicationLaunchOptionsKey: Any]?) -> Bool {
29+
func application(_ application: UIApplication, didFinishLaunchingWithOptions launchOptions: [UIApplication.LaunchOptionsKey: Any]?) -> Bool {
3030
// Override point for customization after application launch.
3131
return true
3232
}

Sources/HTMLSAXParser/HTMLSAXParser.swift

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -34,7 +34,6 @@ public protocol HTMLSAXParseContext {
3434

3535
}
3636

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

0 commit comments

Comments
 (0)