We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d4e7dbf commit a2f4e34Copy full SHA for a2f4e34
Sources/d3-async-location/Permission.swift
@@ -11,16 +11,16 @@ import CoreLocation
11
@available(iOS 15.0, watchOS 7.0, *)
12
final class Permission{
13
14
+ // MARK: - Private properties
15
+
16
/// Current status
17
private var status : CLAuthorizationStatus
18
19
/// Continuation to get permission if status is not defined
20
private var permissioning : CheckedContinuation<CLAuthorizationStatus, Never>?
21
22
/// Check if status is determined
- private var isDetermined : Bool{
- status != .notDetermined
23
- }
+ private var isDetermined : Bool{ status != .notDetermined }
24
25
// MARK: - Life circle
26
0 commit comments