Skip to content
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.

Commit 48b35f0

Browse files
committedJan 7, 2025·
fmt
1 parent 3563eb4 commit 48b35f0

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed
 

‎Coder Desktop/VPN/Manager.swift

+3-3
Original file line numberDiff line numberDiff line change
@@ -6,15 +6,15 @@ actor Manager {
66
let ptp: PacketTunnelProvider
77
let downloader: Downloader
88

9-
var tunnelHandle: TunnelHandle? = nil
10-
var speaker: Speaker<Vpn_TunnelMessage, Vpn_ManagerMessage>? = nil
9+
var tunnelHandle: TunnelHandle?
10+
var speaker: Speaker<Vpn_TunnelMessage, Vpn_ManagerMessage>?
1111
// TODO: XPC Speaker
1212

1313
private let dest = FileManager.default.urls(for: .documentDirectory, in: .userDomainMask)
1414
.first!.appending(path: "coder-vpn.dylib")
1515

1616
init(with: PacketTunnelProvider) {
1717
ptp = with
18-
self.downloader = Downloader()
18+
downloader = Downloader()
1919
}
2020
}

0 commit comments

Comments
 (0)
Please sign in to comment.