Skip to content

Commit

Permalink
Fix signatures of NSApplicationDelegate method implementations
Browse files Browse the repository at this point in the history
  • Loading branch information
kristopherjohnson committed Oct 18, 2019
1 parent 247c2ca commit 0ad2417
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions MenubarCountdown/AppDelegate.swift
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
AppUserDefaults.registerUserDefaults()
}

func applicationDidFinishLaunching(aNotification: NSNotification) {
func applicationDidFinishLaunching(_ notification: Notification) {
Log.debug("application did finish launching")

stopwatch.reset()
Expand All @@ -80,7 +80,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
}
}

func applicationWillTerminate(aNotification: NSNotification) {
func applicationWillTerminate(_ notification: Notification) {
Log.debug("application will terminate")
}

Expand Down

0 comments on commit 0ad2417

Please sign in to comment.