Skip to content

Commit 6412eb0

Browse files
committed
Dont infer types, add explicit types
1 parent 175f0a8 commit 6412eb0

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

.DS_Store

6 KB
Binary file not shown.

Net Alert/AppDelegate.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,11 @@ class AppDelegate: NSObject, NSApplicationDelegate {
1212

1313
let REMOTE_URL: String = "http://captive.apple.com"
1414

15-
var launchAtLoginMenuItem = NSMenuItem()
15+
var launchAtLoginMenuItem: NSMenuItem = NSMenuItem()
1616

17-
let statusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.squareLength)
17+
let statusItem: NSStatusItem = NSStatusBar.system.statusItem(withLength: NSStatusItem.squareLength)
1818

19-
let reachability = Reachability()!
19+
let reachability: Reachability = Reachability()!
2020

2121
func applicationDidFinishLaunching(_ aNotification: Notification) {
2222
constructMenu()

0 commit comments

Comments
 (0)