Fileprivate -> private (#91)

This commit is contained in:
Max Goedjen
2020-05-15 23:19:00 -07:00
committed by GitHub
parent bc0a45366a
commit b234100aa5
11 changed files with 42 additions and 42 deletions

View File

@@ -23,7 +23,7 @@ class AppDelegate: NSObject, NSApplicationDelegate {
let path = (NSHomeDirectory() as NSString).appendingPathComponent("socket.ssh") as String
return SocketController(path: path)
}()
fileprivate var updateSink: AnyCancellable?
private var updateSink: AnyCancellable?
func applicationDidFinishLaunching(_ aNotification: Notification) {
os_log(.debug, "SecretAgent finished launching")

View File

@@ -7,7 +7,7 @@ import Brief
class Notifier {
fileprivate let notificationDelegate = NotificationDelegate()
private let notificationDelegate = NotificationDelegate()
init() {
let updateAction = UNNotificationAction(identifier: Constants.updateActionIdentitifier, title: "Update", options: [])